:root {
  --bg: #faf7f3;
  --paper: #ffffff;
  --ink: #2d2218;
  --muted: #74695e;
  --line: #e8ddcf;
  --leaf: #568b72;
  --leaf-dark: #28645a;
  --leaf-soft: #edf7f2;
  --sun: #e9a13a;
  --sun-dark: #a45f08;
  --sun-soft: #fff4df;
  --latin-font: "Avenir Next", "Trebuchet MS", "Helvetica Neue", sans-serif;
  --display-font: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--latin-font);
  line-height: 1.65;
  background: radial-gradient(circle at 10% 0%, rgba(86, 139, 114, 0.11), transparent 32rem), var(--bg);
}

a { color: inherit; }
h1, h2, p { margin: 0; }
h1, h2 { font-family: var(--display-font); }

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-link img { width: 50px; height: 50px; object-fit: contain; }
.brand-link span { display: grid; line-height: 1.2; }
.brand-link strong { font-size: 0.92rem; }
.brand-link small {
  color: var(--leaf-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-link {
  padding: 9px 14px;
  border: 1px solid rgba(86, 139, 114, 0.25);
  border-radius: 999px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

main { width: min(1120px, calc(100vw - 40px)); margin: 0 auto; }

.feedback-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 7vw, 74px);
  border: 1px solid rgba(86, 139, 114, 0.18);
  border-radius: 32px;
  background: radial-gradient(circle at 85% 28%, rgba(233, 161, 58, 0.16), transparent 18rem), linear-gradient(135deg, #fff 0%, #f4faf7 100%);
  box-shadow: 0 18px 48px rgba(45, 34, 24, 0.07);
}

.feedback-hero > img { width: 220px; height: 220px; object-fit: contain; }
.eyebrow {
  color: var(--leaf-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.feedback-hero h1 { margin-top: 7px; font-size: clamp(2.7rem, 7vw, 5.1rem); line-height: 0.98; }
.hero-intro { max-width: 650px; margin-top: 22px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.18rem); }

.form-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.form-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(45, 34, 24, 0.08);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(45, 34, 24, 0.045);
}

.card-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 19px;
}
.card-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.is-problem .card-icon { color: var(--sun-dark); background: var(--sun-soft); }
.is-feedback .card-icon { color: var(--leaf-dark); background: var(--leaf-soft); }
.card-label {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-card h2 { margin-top: 4px; font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.1; }
.form-card h2 + p { margin-top: 16px; color: var(--muted); font-size: 0.94rem; }

.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  padding: 12px 19px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.is-problem .form-button { background: var(--sun-dark); }
.is-feedback .form-button { background: var(--leaf-dark); }
.form-button:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(45, 34, 24, 0.14); }
.form-button:focus-visible { outline: 3px solid rgba(86, 139, 114, 0.32); outline-offset: 3px; }

.privacy-note {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  margin-top: 20px;
  padding: 26px 30px;
  border: 1px solid rgba(86, 139, 114, 0.18);
  border-radius: 22px;
  background: var(--leaf-soft);
}
.privacy-note > svg {
  width: 48px;
  height: 48px;
  fill: rgba(86, 139, 114, 0.08);
  stroke: var(--leaf);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.privacy-note h2 { color: var(--leaf-dark); font-family: var(--latin-font); font-size: 1rem; }
.privacy-note p { margin-top: 5px; color: #527064; font-size: 0.84rem; }
.privacy-note a { display: inline-block; margin-top: 9px; color: var(--leaf-dark); font-size: 0.78rem; font-weight: 850; }

footer {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(1120px, calc(100vw - 40px));
  margin: 36px auto 0;
  padding: 24px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}
footer img { width: 46px; height: 46px; object-fit: contain; }
.footer-copy { display: grid; flex: 1; gap: 3px; }
.footer-copy small { color: #7b7770; font-size: 0.68rem; }
footer > a { color: var(--leaf-dark); font-weight: 800; }

@media (max-width: 720px) {
  .feedback-hero { grid-template-columns: minmax(0, 1fr) 150px; padding: 38px 30px; }
  .feedback-hero > img { width: 145px; height: 145px; }
  .form-choices { grid-template-columns: 1fr; }
  .form-card { min-height: 340px; }
}

@media (max-width: 520px) {
  .page-header { align-items: flex-start; }
  .brand-link strong { font-size: 0.78rem; }
  .home-link { padding: 8px 10px; font-size: 0.7rem; }
  .feedback-hero { grid-template-columns: 1fr; padding: 34px 24px; }
  .feedback-hero > img { display: none; }
  .feedback-hero h1 { font-size: clamp(2.6rem, 14vw, 3.6rem); }
  .form-card { min-height: 0; }
  .form-button { margin-top: 28px; }
  .privacy-note { grid-template-columns: 1fr; padding: 24px; }
  footer { align-items: flex-start; flex-wrap: wrap; }
  .footer-copy { flex-basis: calc(100% - 60px); }
  footer > a { margin-left: 60px; }
}
