:root {
  --ink: #132116;
  --green-950: #053b24;
  --green-800: #075630;
  --green-700: #08713b;
  --green-100: #e7f0e6;
  --cream: #f8f5ea;
  --paper: #fffef9;
  --line: #c6d2c1;
  --muted: #657066;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { background: var(--green-950); }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(255,255,255,.95) 0 1px, transparent 2px) 0 0 / 19px 19px,
    var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

button, input { font: inherit; }
.site-shell { min-height: 100vh; overflow: hidden; }

.hero {
  position: relative;
  padding: 46px 24px 58px;
  text-align: center;
  border-top: 8px solid var(--green-950);
  border-bottom: 1px solid rgba(5,59,36,.2);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  height: 7px;
  border-top: 2px solid var(--green-800);
  border-bottom: 1px dotted var(--green-800);
}

.hero::before { top: 12px; }
.hero::after { bottom: 14px; }

.corner-leaves {
  position: absolute;
  top: 18px;
  color: var(--green-800);
  font: 74px/1 Georgia, serif;
  opacity: .95;
}

.corner-leaves-left { left: 4%; transform: rotate(-40deg); }
.corner-leaves-right { right: 4%; transform: scaleX(-1) rotate(-40deg); }

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1 {
  margin: 5px 0 -2px;
  color: #050705;
  font: 900 clamp(72px, 16vw, 138px)/.85 Georgia, "Times New Roman", serif;
  letter-spacing: -.055em;
  text-shadow: 3px 3px 0 white, 5px 5px 0 #aebaac;
}

.ribbon {
  width: min(600px, 88%);
  margin: 11px auto 0;
  padding: 9px 32px 10px;
  color: white;
  background: var(--green-700);
  clip-path: polygon(0 12%, 8% 18%, 6% 0, 94% 0, 92% 18%, 100% 12%, 96% 50%, 100% 88%, 91% 84%, 91% 100%, 9% 100%, 9% 84%, 0 88%, 4% 50%);
  font: 700 clamp(23px, 5vw, 42px)/1.05 Georgia, serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.tagline {
  margin: 12px 0 0;
  color: #0a0c0a;
  font: 800 clamp(25px, 5vw, 40px)/1.05 Georgia, serif;
  text-transform: uppercase;
}

.intro {
  width: min(585px, 100%);
  margin: 20px auto 0;
  color: #4f5b50;
  font: 18px/1.55 Georgia, serif;
}

.form-card {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: -18px auto 46px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid #b9c8b5;
  border-radius: 6px;
  box-shadow: 0 18px 55px rgba(5, 59, 36, .16);
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(7,86,48,.2);
  border-radius: 2px;
  pointer-events: none;
}

.form-heading,
form { position: relative; z-index: 1; }

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

h2 { margin: 0; font: 800 36px/1 Georgia, serif; }
.required-note { color: var(--muted); font-size: 12px; white-space: nowrap; }
.required-note b, label > span { color: var(--green-700); }
form { padding-top: 24px; }

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

.field { margin-bottom: 22px; }

label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}

label em {
  color: #788178;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfcf8;
  border: 1px solid #aebdaa;
  border-radius: 4px;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}

input::placeholder { color: #8e968f; }

input:focus {
  background: white;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(8, 113, 59, .13);
}

.field small,
.photo-picker small {
  display: block;
  margin-top: 7px;
  color: #778078;
  font-size: 12px;
  line-height: 1.4;
}

.photo-picker {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 13px 14px;
  text-align: left;
  color: var(--ink);
  background: var(--green-100);
  border: 1px dashed #86a085;
  border-radius: 4px;
  cursor: pointer;
}

.photo-picker:hover { background: #dceadc; }

.photo-picker .camera {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  color: white;
  background: var(--green-800);
  border-radius: 50%;
  font-size: 23px;
}

.photo-preview {
  width: 44px;
  height: 44px;
  margin-right: 12px;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #86a085;
  object-fit: cover;
}

.photo-picker b { display: block; max-width: 390px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.photo-picker small { margin-top: 2px; }

.choose-label {
  margin-left: auto;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  color: white;
  background: var(--green-800);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 5px 0 var(--green-950);
  cursor: pointer;
  font: 700 16px/1.2 Georgia, serif;
  letter-spacing: .02em;
}

.submit-button:hover { background: var(--green-700); }
.submit-button:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--green-950); }
.submit-button:disabled { cursor: wait; opacity: .72; }

.form-message {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.45;
}

.error-message { color: #7c1d1d; background: #fff1ee; border: 1px solid #e8b8ad; }

.success-panel {
  position: relative;
  z-index: 1;
  padding: 54px 16px 44px;
  text-align: center;
  outline: none;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  color: white;
  background: var(--green-700);
  border: 4px solid #d5e8d2;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--green-800);
  font-size: 32px;
  font-weight: 800;
}

.success-panel h3 { margin: 0; font: 800 30px/1.15 Georgia, serif; }
.success-panel p { margin: 12px auto 24px; color: var(--muted); line-height: 1.5; }

.success-panel button {
  padding: 11px 18px;
  color: var(--green-800);
  background: white;
  border: 1px solid var(--green-700);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
}

.success-panel button:hover { background: var(--green-100); }

.privacy-note { margin: 16px 0 0; color: #717b72; font-size: 12px; text-align: center; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

footer { padding: 30px 20px 38px; color: white; background: var(--green-950); text-align: center; }
footer span { color: #bbd5b3; font: 32px Georgia, serif; }
footer p { margin: 8px 0 0; font: 14px Georgia, serif; letter-spacing: .05em; }

.noscript-message {
  position: fixed;
  z-index: 10;
  right: 16px;
  bottom: 16px;
  left: 16px;
  margin: 0 auto;
  padding: 14px;
  max-width: 560px;
  color: #7c1d1d;
  background: #fff1ee;
  border: 1px solid #e8b8ad;
  border-radius: 4px;
  text-align: center;
}

@media (max-width: 640px) {
  .hero { padding: 40px 18px 52px; }
  .corner-leaves { top: 20px; font-size: 48px; }
  h1 { font-size: clamp(68px, 24vw, 104px); }
  .ribbon { width: 100%; padding-inline: 22px; font-size: clamp(20px, 7vw, 30px); }
  .tagline { font-size: 24px; }
  .intro { font-size: 16px; }
  .form-card { width: calc(100% - 20px); margin-bottom: 28px; padding: 26px 20px; }
  .form-heading { align-items: start; }
  h2 { font-size: 30px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .choose-label { display: none; }
  .photo-picker b { max-width: 190px; }
  .submit-button { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
