:root {
  --brand-off-white: #F5F5F1;
  --brand-black-stage: #000000;
  --brand-orange: #E29C5F;
  --brand-blue-gray: #B4C4CE;
  --brand-warm-gray: #CAB09B;
  --brand-cool-gray: #BCBBBA;
  --brand-blue-deep: #516A76;
  --brand-orange-soft: #F1D4B9;
  --ink: #172026;
  --muted: #5d686e;
  --bg: var(--brand-off-white);
  --paper: #ffffff;
  --line: #d9ddd8;
  --teal: var(--brand-blue-deep);
  --teal-dark: var(--brand-blue-deep);
  --coral: var(--brand-orange);
  --soft: #eef3f0;
  --shadow: 0 18px 48px rgba(81, 106, 118, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Nunito Sans", Inter, Aptos, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  padding: 48px 20px;
}

.wrap {
  width: min(960px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(720px, 100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: url("/assets/mend-logo.jpg") center / cover no-repeat;
  color: transparent;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  box-shadow: 0 10px 28px rgba(81, 106, 118, 0.18);
}

.brand strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero {
  margin-bottom: 28px;
}

.eyebrow {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  font-style: italic;
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 800;
  font-style: italic;
}

p {
  color: var(--muted);
  font-size: 17px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 760;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button.primary {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}

.button.primary:hover,
button:hover {
  background: #c77e43;
}

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

.card,
.notice,
.email-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.notice {
  box-shadow: none;
  background: linear-gradient(135deg, rgba(245, 210, 192, 0.48), rgba(238, 243, 240, 0.9));
}

.notice strong {
  color: var(--teal-dark);
}

.email-box {
  margin: 28px 0;
}

.email-box form {
  display: grid;
  gap: 10px;
}

label {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}

button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--brand-blue);
  color: #fff;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.brand-band {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 28px 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(226, 156, 95, 0.9), transparent 30%),
    radial-gradient(circle at 78% 34%, rgba(180, 196, 206, 0.9), transparent 32%),
    linear-gradient(105deg, #E29C5F 0%, #CAB09B 46%, #B4C4CE 100%);
  box-shadow: var(--shadow);
}

.brand-band video {
  display: none;
}

.brand-band .brand-band-label {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: #fff;
  font-weight: 800;
  font-style: italic;
  text-shadow: 0 2px 18px rgba(80,88,92,0.34);
}

.fine {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: 44px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 720px) {
  .page {
    padding: 28px 16px;
  }

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

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
