:root {
  --ink: #3d2a2f;
  --muted: #856b73;
  --paper: #fff9f5;
  --paper-deep: #fff0e8;
  --line: #f0cfd1;
  --rose: #f06488;
  --rose-dark: #b63e63;
  --peach: #ffb39b;
  --mint: #79bda7;
  --lavender: #8b79b8;
  --shadow: 0 22px 52px rgba(148, 69, 86, 0.2);
  font-family: "Segoe UI", "Noto Sans TC", system-ui, sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 16% 9%, rgba(255, 179, 155, 0.45), transparent 25%),
    radial-gradient(circle at 90% 14%, rgba(240, 100, 136, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 24px, transparent 25px),
    linear-gradient(#f7c8cf 0 1px, transparent 1px),
    linear-gradient(145deg, #ffe7ef 0%, #fff9f5 46%, #eef8ef 100%);
  background-size: auto, auto, 50px 50px, 100% 32px, auto;
}

body {
  min-height: 100dvh;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.shell {
  width: min(100%, 760px);
  min-height: 100dvh;
  margin: 0 auto;
  padding: 18px;
  position: relative;
}

.shell::before {
  content: "";
  position: fixed;
  inset: 0 auto 0 50%;
  width: min(100%, 760px);
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 23px, rgba(240, 100, 136, 0.12) 24px 25px, transparent 26px),
    radial-gradient(circle at 25px 90px, rgba(240, 100, 136, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 25px 152px, rgba(240, 100, 136, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 25px 214px, rgba(240, 100, 136, 0.18) 0 4px, transparent 5px);
  opacity: 0.8;
}

.hero {
  min-height: calc(100dvh - 36px);
  display: grid;
  grid-template-rows: auto minmax(210px, 1fr) auto;
  gap: 18px;
  padding: 14px 4px 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  border: 1px solid rgba(240, 207, 209, 0.9);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.84);
  padding: 7px 12px 7px 8px;
  color: #8e4659;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(148, 69, 86, 0.12);
}

.brand-mark img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.hero-media {
  display: grid;
  place-items: center;
  min-height: 0;
}

.diary-book {
  position: relative;
  width: min(88vw, 430px);
  aspect-ratio: 1.22;
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  padding: 14px;
  border: 1px solid rgba(221, 143, 153, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(172, 93, 109, 0.08), transparent 10%, transparent 90%, rgba(172, 93, 109, 0.1)),
    #f6c9d2;
  box-shadow:
    0 28px 60px rgba(148, 69, 86, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.diary-page {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(240, 207, 209, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(240, 100, 136, 0.12) 0 1px, transparent 1px 100%),
    repeating-linear-gradient(#fffaf7 0 31px, #f2d9dc 32px 33px);
  background-size: 32px 100%, auto;
  padding: 40px 18px 18px;
  overflow: hidden;
  box-shadow: inset 0 0 22px rgba(148, 69, 86, 0.06);
}

.diary-page p {
  margin: 0;
  color: #a65a6c;
  font-size: 13px;
  font-weight: 800;
}

.diary-page strong {
  display: block;
  color: #5c3a43;
  font-size: 16px;
  line-height: 1.5;
}

.diary-spine {
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(137, 65, 83, 0.24), rgba(255, 255, 255, 0.54), rgba(137, 65, 83, 0.22));
}

.tape {
  position: absolute;
  top: 12px;
  left: 22px;
  width: 54px;
  height: 18px;
  transform: rotate(-7deg);
  border-radius: 4px;
  background: rgba(255, 211, 125, 0.76);
  box-shadow: 0 2px 8px rgba(148, 69, 86, 0.1);
}

.date-stamp {
  content: "100";
  position: absolute;
  right: 22px;
  top: 12px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(240, 100, 136, 0.18);
}

.hero-steward {
  position: absolute;
  right: -4px;
  bottom: -18px;
  width: min(31vw, 132px);
  border-radius: 999px;
  filter: drop-shadow(0 16px 22px rgba(148, 69, 86, 0.18));
}

.hero-copy h1 {
  margin: 4px 0 8px;
  font-size: clamp(42px, 11vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.eyebrow {
  margin: 0;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions,
.auth-grid,
.dialog-actions,
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.primary,
.secondary,
.ghost,
.line-button,
.icon-btn {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 800;
}

.primary {
  background: linear-gradient(135deg, #f06488, #e04970);
  color: white;
  box-shadow: 0 12px 28px rgba(240, 100, 136, 0.28);
}

.primary.danger {
  background: linear-gradient(135deg, #dc4f65, #9f304a);
  box-shadow: 0 12px 28px rgba(220, 79, 101, 0.25);
}

.secondary {
  background: linear-gradient(135deg, #79bda7, #3f967e);
  color: white;
}

.ghost {
  background: rgba(255, 249, 245, 0.82);
  color: var(--ink);
  border: 1px solid var(--line);
}

.line-button {
  background: #06c755;
  color: white;
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.22);
}

.auth-status {
  margin: 10px 0 0;
  border: 1px solid rgba(240, 207, 209, 0.92);
  border-radius: 8px;
  background: rgba(255, 249, 245, 0.88);
  color: #8e4659;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.hero-flow span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 207, 209, 0.92);
  border-radius: 8px;
  background: rgba(255, 249, 245, 0.72);
  color: #8e4659;
  font-size: 12px;
  font-weight: 800;
}

.privacy-note {
  margin-top: 12px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

.panel,
.modal-body {
  border: 1px solid rgba(240, 207, 209, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(240, 100, 136, 0.1) 0 1px, transparent 1px 100%),
    repeating-linear-gradient(rgba(255, 249, 245, 0.92) 0 31px, rgba(242, 217, 220, 0.78) 32px 33px);
  background-size: 34px 100%, auto;
  box-shadow: var(--shadow);
  padding: 16px;
}

.panel-head {
  margin-bottom: 14px;
}

.panel-head h2,
.panel-head h3 {
  margin: 4px 0 0;
}

.panel-head.inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.workspace {
  display: grid;
  gap: 14px;
  padding-bottom: 32px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  backdrop-filter: blur(16px);
}

.topbar h2 {
  margin: 2px 0 0;
  font-size: 25px;
  overflow-wrap: anywhere;
}

.title-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  min-width: 0;
  max-width: calc(100vw - 108px);
}

.title-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #8e4659;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.title-plan {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 9px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(92, 45, 58, 0.1);
}

.title-plan.free {
  background: #ffe4ec;
  border-color: rgba(197, 66, 101, 0.22);
  color: #9a4058;
}

.title-plan.silver {
  background: linear-gradient(135deg, #ffffff, #dce6f0);
  border-color: rgba(104, 124, 145, 0.26);
  color: #415367;
}

.title-plan.gold {
  background: linear-gradient(135deg, #fff6c9, #ffc94d);
  border-color: rgba(177, 119, 0, 0.26);
  color: #7a4e00;
}

.icon-btn {
  width: 46px;
  padding: 0;
  font-size: 25px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
}

.menu-btn {
  display: grid;
  place-content: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: white;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.metric {
  min-height: 88px;
  border-radius: 8px;
  padding: 14px;
  color: white;
}

.metric strong {
  display: block;
  font-size: 25px;
}

.metric span {
  font-size: 12px;
  opacity: 0.88;
}

.metric.warm {
  background: linear-gradient(135deg, #f06488, #b94e75);
}

.metric.mint {
  background: linear-gradient(135deg, #79bda7, #3f967e);
}

.metric.blue {
  background: linear-gradient(135deg, #8b79b8, #6677aa);
}

.utility-menu {
  position: fixed;
  top: 76px;
  right: max(16px, calc((100vw - 1120px) / 2));
  z-index: 10;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  gap: 10px;
}

.menu-list {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(240, 207, 209, 0.92);
  border-radius: 8px;
  background: rgba(255, 249, 245, 0.98);
  box-shadow: 0 18px 42px rgba(148, 69, 86, 0.18);
  padding: 8px;
}

.menu-list button {
  min-height: 42px;
  justify-content: flex-start;
  background: transparent;
  color: #68404a;
  text-align: left;
}

.menu-list button:hover {
  background: rgba(240, 207, 209, 0.34);
}

.menu-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(240, 207, 209, 0.92);
  border-radius: 8px;
  background: rgba(255, 249, 245, 0.96);
  box-shadow: 0 16px 36px rgba(148, 69, 86, 0.14);
  padding: 12px;
}

.menu-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.menu-card strong {
  justify-self: start;
  color: var(--rose-dark);
  font-size: 20px;
}

.menu-card .full {
  grid-column: 1 / -1;
}

.menu-card select {
  min-height: 42px;
}

.book-id-row {
  grid-column: 1 / -1;
  border-radius: 8px;
  background: rgba(255, 240, 232, 0.68);
  color: rgba(104, 64, 74, 0.72);
  padding: 7px 8px;
}

.book-id-row small {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.menu-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.menu-actions .secondary:first-child:nth-last-child(3) {
  grid-column: 1 / -1;
}

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

.settings-card select {
  width: 100%;
}

.danger-text {
  color: #a43b50;
}

.delete-notice {
  grid-template-columns: 1fr;
  border-color: rgba(164, 59, 80, 0.28);
  background: #fff3f5;
}

.delete-notice p {
  margin: 0;
  color: #744450;
  font-size: 13px;
  line-height: 1.6;
}

.admin-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #744450;
  font-size: 13px;
  line-height: 1.6;
}

.setup-return {
  margin-bottom: 12px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}

.tab {
  min-height: 42px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.tab.active {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
}

.form,
.task-form,
.modal-body {
  display: grid;
  gap: 12px;
}

.form-hint {
  margin: 0;
  border: 1px solid rgba(240, 207, 209, 0.92);
  border-radius: 8px;
  background: rgba(255, 249, 245, 0.78);
  color: #7b4b56;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.6;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field-label-row,
.char-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.field-label-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.char-counter,
.char-counter-row {
  color: rgba(133, 107, 115, 0.76);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.char-counter {
  flex: 0 0 auto;
}

.char-counter.is-full {
  color: var(--rose-dark);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

.steward-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(240, 207, 209, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 10px;
}

.steward-card img {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(148, 69, 86, 0.14));
}

.steward-card strong {
  display: block;
  margin-top: 3px;
  color: #5c3a43;
  line-height: 1.45;
}

textarea {
  resize: vertical;
}

.rating-field {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.rating-field legend {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-rating label {
  display: inline-grid;
  cursor: pointer;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating span {
  color: #e0b9a7;
  font-size: 32px;
  line-height: 1;
  transition: color 0.16s ease, transform 0.16s ease;
}

.star-rating label:hover span,
.star-rating label:hover ~ label span,
.star-rating label:has(input:checked) span,
.star-rating label:has(input:checked) ~ label span {
  color: #f4ad32;
}

.star-rating label:hover span {
  transform: translateY(-1px) scale(1.04);
}

.invite-strip {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5c3a43, #b63e63);
  color: white;
  padding: 12px 14px;
}

.invite-strip span {
  display: block;
  font-size: 12px;
  opacity: 0.72;
}

.invite-strip strong {
  font-size: 22px;
  letter-spacing: 0.08em;
}

.invite-strip small {
  display: block;
  max-width: 100%;
  margin-top: 3px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.invite-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.invite-actions .ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.tasks {
  display: grid;
  gap: 10px;
}

.task-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}

.task-card.pending {
  opacity: 0.74;
}

.task-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
}

.check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--rose);
  color: var(--rose);
  background: white;
  font-weight: 900;
  padding: 0;
}

.task-card.done .check {
  background: var(--mint);
  border-color: var(--mint);
  color: white;
}

.task-card h4 {
  margin: 0;
  font-size: 17px;
}

.task-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.tag {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: #ffe4ea;
  color: #9b405b;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.task-actions button {
  min-height: 36px;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff0e8;
  color: var(--ink);
  font-weight: 800;
}

.empty {
  border: 1px dashed #e3a6b1;
  border-radius: 8px;
  padding: 24px 16px;
  color: var(--muted);
  text-align: center;
}

.modal {
  width: min(calc(100% - 24px), 520px);
  border: 0;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(44, 39, 37, 0.34);
}

.confirm-message {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-modal {
  width: min(calc(100% - 24px), 640px);
}

.legal-body {
  max-height: min(82dvh, 760px);
  overflow: auto;
}

.legal-body section {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(240, 207, 209, 0.8);
  padding-top: 12px;
}

.legal-body h4 {
  margin: 0;
  color: #68404a;
  font-size: 15px;
}

.legal-body p,
.legal-body li,
.legal-body dd {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.legal-body p,
.legal-body ul,
.legal-list {
  margin: 0;
}

.legal-body ul {
  padding-left: 18px;
}

.legal-body a {
  color: var(--rose-dark);
  font-weight: 800;
}

.legal-list {
  display: grid;
  gap: 8px;
}

.legal-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
}

.legal-list dt {
  color: #68404a;
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 12px 0 2px;
}

.site-footer button {
  min-height: auto;
  background: transparent;
  color: rgba(104, 64, 74, 0.72);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing {
  display: grid;
  gap: 10px;
}

.pricing article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 14px;
}

.pricing article.featured {
  border-color: rgba(240, 100, 136, 0.48);
  background: #fff1f5;
}

.pricing span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.pricing strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
}

.pricing p {
  margin: 6px 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.full {
  width: 100%;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 10;
  max-width: min(92vw, 420px);
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 12px 14px;
  transition: 0.2s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background: rgba(61, 42, 47, 0.22);
  backdrop-filter: blur(5px);
}

.loading-box {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 160px;
  border: 1px solid rgba(240, 207, 209, 0.96);
  border-radius: 8px;
  background: rgba(255, 249, 245, 0.96);
  box-shadow: 0 18px 46px rgba(148, 69, 86, 0.24);
  color: var(--ink);
  padding: 18px 20px;
}

.loading-spinner {
  width: 34px;
  height: 34px;
  border: 4px solid #ffd7df;
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.78s linear infinite;
}

.loading-box strong {
  font-size: 14px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 520px) {
  .shell {
    padding: 12px;
  }

  .hero {
    min-height: calc(100dvh - 24px);
    grid-template-rows: auto minmax(190px, 0.92fr) auto;
    gap: 10px;
  }

  .hero-actions,
  .dialog-actions {
    grid-template-columns: 1fr;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .diary-book {
    width: min(94vw, 360px);
    padding: 10px;
  }

  .diary-page {
    padding: 34px 12px 14px;
  }

  .diary-page strong {
    font-size: 14px;
  }

  .hero-steward {
    width: 96px;
    right: -2px;
    bottom: -16px;
  }

  .panel-head.inline {
    align-items: stretch;
    flex-direction: column;
  }

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

  .metric {
    min-height: 70px;
  }

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

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

  .invite-strip,
  .invite-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 680px) {
  .hero {
    grid-template-rows: auto minmax(150px, 0.72fr) auto;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 16px;
  }
}
