:root {
  --paper: #f6eee1;
  --porcelain: #fffaf2;
  --ink: #272a2a;
  --muted: #5f625d;
  --gold: #a77725;
  --gold-soft: #d5b06a;
  --sage: #6f7b69;
  --clay: #a86f52;
  --line: rgba(167, 119, 37, 0.22);
  --shadow: 0 24px 80px rgba(66, 49, 28, 0.16);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.72), rgba(255, 250, 242, 0.18)),
    radial-gradient(circle at 88% 12%, rgba(111, 123, 105, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(167, 119, 37, 0.08), transparent 42%);
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 238, 225, 0.97) 0%, rgba(246, 238, 225, 0.88) 42%, rgba(246, 238, 225, 0.35) 72%, rgba(246, 238, 225, 0.1) 100%),
    linear-gradient(180deg, rgba(246, 238, 225, 0.08) 0%, rgba(246, 238, 225, 0.92) 100%);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 46%;
  filter: saturate(0.98);
}

.hero__content {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  padding: 28px 0 76px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  width: clamp(190px, 26vw, 324px);
  text-decoration: none;
}

.topbar__link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(39, 42, 42, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.56);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(260px, 340px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(36px, 7vw, 96px);
  padding-top: clamp(40px, 8vw, 92px);
}

.eyebrow,
.section-kicker,
.launch-panel__kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 8.25rem);
}

.lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.notify {
  width: min(100%, 560px);
  padding: 22px;
  border: 1px solid rgba(167, 119, 37, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.notify label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.field input {
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(39, 42, 42, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: 500 1rem var(--sans);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field input::placeholder {
  color: rgba(95, 98, 93, 0.72);
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--porcelain);
  box-shadow: 0 0 0 4px rgba(213, 176, 106, 0.24);
}

.btn {
  position: relative;
  min-width: 134px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: var(--porcelain);
  cursor: pointer;
  font: 800 0.9rem var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  background: #111414;
  box-shadow: 0 14px 34px rgba(39, 42, 42, 0.18);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 4px solid rgba(213, 176, 106, 0.32);
  outline-offset: 2px;
}

.btn:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.btn-spinner {
  display: none;
  position: absolute;
  inset: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 2px solid rgba(255, 250, 242, 0.38);
  border-top-color: var(--porcelain);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.is-loading .btn-label {
  visibility: hidden;
}

.btn.is-loading .btn-spinner {
  display: block;
}

.form-msg {
  min-height: 1.4em;
  margin: 12px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-msg.is-error {
  color: #9d472e;
}

.form-msg.is-success {
  color: #4c6f4c;
}

.fine-print {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.launch-panel {
  align-self: end;
  margin-bottom: clamp(16px, 5vw, 76px);
  padding: 28px;
  border: 1px solid rgba(255, 250, 242, 0.44);
  border-radius: 8px;
  background: rgba(39, 42, 42, 0.78);
  color: var(--porcelain);
  box-shadow: 0 22px 80px rgba(39, 42, 42, 0.22);
  backdrop-filter: blur(16px);
}

.launch-panel__kicker {
  color: var(--gold-soft);
}

.launch-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-panel li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.96rem;
  line-height: 1.45;
}

.launch-panel span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(213, 176, 106, 0.42);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.intro {
  padding: clamp(68px, 9vw, 116px) 0;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(246, 238, 225, 0.95));
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
}

.intro h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5.8vw, 5.6rem);
}

.intro p:not(.section-kicker) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.values {
  padding: 0 0 clamp(72px, 10vw, 124px);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: clamp(32px, 4vw, 52px);
  border-right: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.42);
}

.value:last-child {
  border-right: 0;
}

.value::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  pointer-events: none;
}

.value--precision::before {
  background:
    linear-gradient(110deg, rgba(255, 250, 242, 0.14), rgba(255, 250, 242, 0.84)),
    repeating-linear-gradient(30deg, transparent 0 18px, rgba(167, 119, 37, 0.13) 19px 20px);
}

.value--accuracy::before {
  background:
    radial-gradient(circle at 12% 82%, rgba(111, 123, 105, 0.18), transparent 28%),
    repeating-radial-gradient(circle at 12% 82%, rgba(167, 119, 37, 0.18) 0 1px, transparent 2px 13px);
}

.value--care::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(111, 123, 105, 0.2), transparent 18%),
    linear-gradient(140deg, transparent, rgba(168, 111, 82, 0.11));
}

.value__icon,
.value h3,
.value p {
  position: relative;
}

.value__icon {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 78px;
  border: 1px solid var(--gold);
  transform: rotate(30deg);
}

.value__icon::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.value h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.value h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 16px;
  background: var(--gold);
}

.value p {
  max-width: 270px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.site-footer {
  padding: 34px 0;
  background: #262a28;
  color: var(--porcelain);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer img {
  width: 164px;
  filter: brightness(1.18);
}

.site-footer div div {
  text-align: right;
}

.site-footer a {
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 250, 242, 0.64);
  font-size: 0.82rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .hero,
  .hero__content {
    min-height: auto;
  }

  .hero__image::after {
    background:
      linear-gradient(180deg, rgba(246, 238, 225, 0.96) 0%, rgba(246, 238, 225, 0.82) 56%, rgba(246, 238, 225, 0.96) 100%),
      linear-gradient(90deg, rgba(246, 238, 225, 0.88), rgba(246, 238, 225, 0.4));
  }

  .hero__content {
    padding-bottom: 56px;
  }

  .hero__grid,
  .intro__grid {
    grid-template-columns: 1fr;
  }

  .launch-panel {
    align-self: stretch;
    margin-bottom: 0;
  }

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

  .value {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value:last-child {
    border-bottom: 0;
  }

  .value__icon {
    margin-bottom: 52px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    align-items: flex-start;
  }

  .topbar__link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5.2rem);
  }

  .notify {
    padding: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .launch-panel {
    padding: 22px;
  }

  .intro {
    padding-top: 58px;
  }

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

  .site-footer div div {
    text-align: left;
  }
}

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