:root {
  --ink: #271b1d;
  --muted: #715f61;
  --paper: #fffaf6;
  --panel: #ffffff;
  --rose: #a33c52;
  --rose-dark: #74283a;
  --gold: #c8924d;
  --green: #3e6b5d;
  --line: rgba(39, 27, 29, 0.14);
  --shadow: 0 24px 70px rgba(39, 27, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: white;
  background: rgba(39, 27, 29, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.brand,
.header-action,
.primary-action,
.secondary-action,
.submit-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.header-action {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  font-weight: 700;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 6vw, 84px) 76px;
  overflow: hidden;
  color: white;
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(37, 18, 19, 0.76), rgba(37, 18, 19, 0.24)),
    linear-gradient(0deg, rgba(37, 18, 19, 0.72), transparent 56%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.6rem, 13vw, 10.5rem);
  line-height: 0.84;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

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

.primary-action,
.secondary-action,
.submit-button {
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 850;
}

.primary-action,
.submit-button {
  border: 0;
  color: white;
  background: var(--rose);
  box-shadow: 0 14px 30px rgba(116, 40, 58, 0.28);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.13);
}

.intro,
.feedback-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 84px);
}

.intro h2,
.feedback-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro > p,
.feedback-copy p {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.feature-strip article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 54px);
  background: #fff5ee;
}

.feature-strip span {
  color: var(--green);
  font-weight: 900;
}

.feature-strip h3 {
  margin: 54px 0 12px;
  font-size: 1.35rem;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feedback-section {
  align-items: start;
  background: linear-gradient(180deg, #fffaf6, #f7efe8);
}

.feedback-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

label span,
legend {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdfb;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(163, 60, 82, 0.12);
}

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

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-row label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdfb;
  color: var(--muted);
  font-weight: 750;
}

.radio-row input {
  width: auto;
  accent-color: var(--rose);
}

small {
  min-height: 18px;
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  width: fit-content;
  min-width: 176px;
  cursor: pointer;
  font: inherit;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .intro,
  .feedback-section,
  .feature-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    min-height: 210px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header-action {
    padding-inline: 13px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 24vw, 6.7rem);
  }

  .hero-actions,
  .primary-action,
  .secondary-action,
  .submit-button {
    width: 100%;
  }
}
