:root {
  --coffee-950: #3f1f08;
  --coffee-900: #532704;
  --coffee-800: #6b3307;
  --coffee-700: #7f3e0b;
  --coffee-600: #9a571e;
  --caramel: #b6762d;
  --gold: #f2bd49;
  --gold-soft: #ffd978;
  --cream: #fffaf0;
  --cream-2: #f7efe1;
  --cream-3: #ebdfcd;
  --ink: #2b1c13;
  --muted: #79695c;
  --green: #5f8557;
  --shadow: 0 28px 70px rgba(45, 20, 3, .22);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 189, 73, .16), transparent 29rem),
    linear-gradient(135deg, var(--coffee-900) 0%, var(--coffee-800) 52%, #823b06 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.14) 0 1px, transparent 1px);
  background-size: 28px 28px, 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}

a { color: inherit; }

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

.site-header {
  padding: 28px 0 16px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff8e9;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -.02em;
  font-size: 18px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 10px 24px rgba(24, 10, 0, .18);
}

.brand-mark svg { width: 23px; height: 23px; fill: var(--coffee-800); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 248, 233, .78);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 620;
  font-size: 14px;
  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.11);
}

.feedback-main {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 72px;
  padding: 50px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.hero h1 {
  margin: 16px 0 18px;
  max-width: 680px;
  color: #fff8ec;
  font-family: Arial;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 700;
}

.hero h1 span { color: var(--gold-soft); }

.hero-copy {
  color: rgba(255, 247, 235, .78);
  font-size: 18px;
  line-height: 1.7;
  max-width: 610px;
  margin: 0;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.feature-pill {
  color: rgba(255, 249, 239, .92);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(12px);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

.form-card,
.policy-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 243, .99), rgba(247, 239, 225, .98));
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.form-card { padding: 34px; }

.form-card::after,
.policy-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -150px;
  top: -160px;
  background: radial-gradient(circle, rgba(242,189,73,.22), rgba(242,189,73,0) 70%);
  pointer-events: none;
}

.form-card h2 {
  margin: 0 0 10px;
  font-family: Arial;
  font-size: 35px;
  letter-spacing: -.035em;
}

.form-intro {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 26px;
  font-size: 15px;
}

.field { margin: 0 0 18px; }

label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 740;
  color: #5b493b;
}

input,
textarea {
  width: 100%;
  border: 1px solid #dfd2be;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 15px 16px;
  font: inherit;
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

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

input:focus,
textarea:focus {
  border-color: var(--caramel);
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(182,118,45,.12);
}

button {
  width: 100%;
  border: 0;
  cursor: pointer;
  border-radius: 16px;
  padding: 15px 18px;
  font: inherit;
  font-weight: 760;
  font-size: 15px;
  color: #4f2709;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 30px rgba(145, 79, 20, .24), inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .15s ease, box-shadow .15s ease;
}

button:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(145,79,20,.28), inset 0 1px 0 rgba(255,255,255,.7); }
button:active { transform: translateY(0); }

.success-message {
  display: none;
  margin: 16px 0 0;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(95, 133, 87, .12);
  color: #44613e;
  border: 1px solid rgba(95,133,87,.22);
  font-size: 14px;
  font-weight: 650;
}

.success-message.show { display: block; }

.site-footer {
  padding: 24px 0 34px;
  color: rgba(255, 247, 235, .62);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
}

.footer-row a {
  color: rgba(255,247,235,.82);
  text-decoration: none;
}

.footer-row a:hover { color: #fff; }

.policy-main { padding: 46px 0 74px; }

.policy-hero {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.policy-hero h1 {
  color: #fff8ec;
  margin: 12px 0 14px;
  font-family: Arial;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -.05em;
  line-height: 1;
}

.policy-hero p {
  color: rgba(255,247,235,.74);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.policy-card {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
}

.policy-content {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.78;
  color: #49392e;
}

.policy-content p { margin: 0 0 22px; }
.policy-content p:last-child { margin-bottom: 0; }

.policy-content .policy-lead {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
}

.policy-content strong { color: #352318; }

.policy-content ul {
  margin: -8px 0 24px 0;
  padding-left: 22px;
}

.policy-content li { margin: 8px 0; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: rgba(255,247,235,.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.back-link:hover { color: #fff; }

@media (max-width: 900px) {
  .feedback-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 34px;
  }

  .hero h1 { max-width: 620px; }
  .hero-copy { max-width: 680px; }
  .form-card { max-width: 680px; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 24px, 1160px); }
  .site-header { padding-top: 18px; }
  .nav { align-items: flex-start; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
  .brand { font-size: 16px; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 9px 10px; font-size: 13px; }
  .feedback-main { padding: 34px 0 58px; }
  .hero h1 { font-size: clamp(49px, 17vw, 70px); }
  .hero-copy { font-size: 16px; }
  .form-card { padding: 24px 20px; border-radius: 24px; }
  .form-card h2 { font-size: 30px; }
  .feature-row { margin-top: 26px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
  .policy-main { padding-top: 30px; }
  .policy-hero { text-align: left; }
  .policy-card { border-radius: 24px; padding: 26px 20px; }
  .policy-content { font-size: 15px; }
  .policy-content .policy-lead { font-size: 17px; }
}
