:root {
  color-scheme: dark;
  --ink: #f5ead2;
  --muted: #cbbd9f;
  --dim: #8f846f;
  --paper: #e6d7b8;
  --gold: #cfa75b;
  --gold-soft: #f0d792;
  --navy: #10192f;
  --navy-2: #172644;
  --night: #080d18;
  --oxblood: #6e2632;
  --teal: #2c6f70;
  --line: rgba(231, 205, 139, 0.2);
  --line-strong: rgba(231, 205, 139, 0.38);
  --glass: rgba(12, 18, 31, 0.76);
  --glass-strong: rgba(14, 23, 42, 0.92);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --radius-sm: 6px;
  --topbar: 72px;
  font-family: "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.94), rgba(16, 25, 47, 0.96)),
    url("assets/paper-texture.png");
  background-size: auto, 620px;
  font-size: 16px;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 16%, rgba(207, 167, 91, 0.16), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(44, 111, 112, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 92px 92px, 92px 92px;
}

body.light-mode {
  color-scheme: light;
  --ink: #211a12;
  --muted: #685b43;
  --dim: #827357;
  --paper: #342719;
  --gold-soft: #8b641e;
  --gold: #b9842e;
  --navy: #eadcbd;
  --navy-2: #fff3d8;
  --night: #d7c294;
  --glass: rgba(248, 238, 217, 0.82);
  --glass-strong: rgba(255, 248, 234, 0.95);
  --line: rgba(91, 65, 29, 0.16);
  --line-strong: rgba(91, 65, 29, 0.3);
  --shadow: 0 24px 70px rgba(72, 47, 18, 0.16);
  background:
    linear-gradient(180deg, rgba(247, 236, 212, 0.96), rgba(234, 220, 189, 0.96)),
    url("assets/paper-texture.png");
  background-size: auto, 620px;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--topbar);
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 24, 0.78);
  backdrop-filter: blur(18px);
}

body.light-mode .topbar {
  background: rgba(242, 226, 194, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(207, 167, 91, 0.1);
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong,
.brand-copy small {
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--muted);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.topnav a {
  min-width: 94px;
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: var(--muted);
}

.topnav a:hover {
  color: var(--ink);
  background: rgba(207, 167, 91, 0.12);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.install-button,
.action-button,
.ghost-button,
.primary-action,
.secondary-action,
.tab-button,
.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease, color 160ms ease;
}

.icon-button:hover,
.install-button:hover,
.action-button:hover,
.ghost-button:hover,
.secondary-action:hover,
.tab-button:hover,
.card-action:hover {
  border-color: var(--line-strong);
  background: rgba(207, 167, 91, 0.12);
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
}

.install-button {
  min-width: 112px;
  padding: 0 12px;
  color: var(--paper);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

body.light-mode .install-button {
  color: var(--ink);
  background: rgba(185, 132, 46, 0.12);
}

.icon-button svg,
.install-button svg,
.action-button svg,
.ghost-button svg,
.primary-action svg,
.secondary-action svg,
.card-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: calc(84svh - var(--topbar));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 80px 8vw 96px;
  background:
    linear-gradient(105deg, rgba(8, 13, 24, 0.96) 0%, rgba(16, 25, 47, 0.9) 54%, rgba(110, 38, 50, 0.56) 100%),
    url("assets/paper-texture.png") center / 540px,
    linear-gradient(135deg, var(--night), var(--navy-2));
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(8, 13, 24, 0.95));
}

body.light-mode .hero {
  background:
    linear-gradient(105deg, rgba(255, 248, 234, 0.92) 0%, rgba(234, 220, 189, 0.84) 54%, rgba(207, 167, 91, 0.24) 100%),
    url("assets/paper-texture.png") center / 540px,
    linear-gradient(135deg, #f7ecd4, #eadcbd);
}

body.light-mode .hero::after {
  background: linear-gradient(180deg, transparent, rgba(234, 220, 189, 0.94));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(230, 215, 184, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 215, 184, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: 4.6rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.welcome {
  max-width: 560px;
  color: var(--paper);
  font-size: 1.25rem;
  line-height: 1.55;
}

body.light-mode .welcome {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  min-width: 208px;
  padding: 0 18px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
}

.primary-action {
  border-color: rgba(240, 215, 146, 0.7);
  color: #16110a;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 16px 42px rgba(207, 167, 91, 0.24);
}

body.light-mode .primary-action,
body.light-mode .tab-button.is-active,
body.light-mode .month-button.is-active,
body.light-mode .day-button.is-active,
body.light-mode .action-button.is-active,
body.light-mode .card-action.is-active {
  color: #211a12;
  background: linear-gradient(180deg, #f1cd72, #c8953f);
}

.primary-action:hover {
  transform: translateY(-1px);
}

.secondary-action {
  color: var(--paper);
  background: rgba(11, 17, 30, 0.68);
}

body.light-mode .secondary-action {
  color: var(--ink);
  background: rgba(255, 248, 234, 0.66);
}

.section-inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.today-band {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(110, 38, 50, 0.22), rgba(44, 111, 112, 0.13)),
    rgba(11, 18, 32, 0.68);
}

body.light-mode .today-band {
  background:
    linear-gradient(90deg, rgba(207, 167, 91, 0.18), rgba(44, 111, 112, 0.1)),
    rgba(247, 236, 212, 0.9);
}

.today-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: center;
}

.today-date {
  margin: 0;
  color: var(--muted);
  font-family: "Inter", "Segoe UI", sans-serif;
}

.progress-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.progress-copy strong {
  color: var(--gold-soft);
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width 260ms ease;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr) minmax(250px, 300px);
  gap: 20px;
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 54px;
}

.calendar-panel,
.favorites-panel {
  position: sticky;
  top: calc(var(--topbar) + 18px);
  align-self: start;
  max-height: calc(100svh - var(--topbar) - 36px);
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-head h2 {
  font-size: 1.45rem;
}

.month-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 16px;
}

.month-button,
.day-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.month-button {
  padding: 0 8px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.8rem;
}

.month-button.is-active,
.day-button.is-active {
  color: #16110a;
  border-color: rgba(240, 215, 146, 0.72);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.month-button:hover,
.day-button:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 78px 1fr 78px;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.calendar-toolbar strong {
  color: var(--paper);
  text-align: center;
}

.ghost-button {
  min-width: 0;
  padding: 0 8px;
  color: var(--muted);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.82rem;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(30px, 1fr));
  gap: 7px;
}

.day-button {
  position: relative;
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.day-button.is-discovered::after,
.day-button.is-favorite::before {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
}

.day-button.is-discovered::after {
  right: 5px;
  bottom: 5px;
  background: var(--teal);
}

.day-button.is-favorite::before {
  left: 5px;
  top: 5px;
  background: var(--gold-soft);
}

.reader {
  min-width: 0;
}

.date-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(207, 167, 91, 0.12), transparent 38%),
    var(--glass-strong);
  box-shadow: var(--shadow);
}

.date-hero p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.5;
}

.date-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 220px;
}

.action-button {
  min-width: 160px;
  padding: 0 12px;
  color: var(--paper);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.action-button.is-active,
.card-action.is-active {
  color: #16110a;
  border-color: rgba(240, 215, 146, 0.78);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.quote-block {
  margin: 18px 0;
  padding: 26px;
  border: 1px solid rgba(207, 167, 91, 0.34);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(207, 167, 91, 0.1), rgba(44, 111, 112, 0.07)),
    rgba(255, 255, 255, 0.035);
}

.quote-block p {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 1.3rem;
  line-height: 1.48;
}

.quote-block footer {
  color: var(--gold-soft);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.92rem;
}

body.light-mode .quote-block {
  background:
    linear-gradient(90deg, rgba(207, 167, 91, 0.16), rgba(44, 111, 112, 0.08)),
    rgba(255, 248, 234, 0.84);
}

body.light-mode .quote-block p {
  color: var(--paper);
}

.quote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 16px;
}

.tab-button {
  flex: 0 0 auto;
  min-width: 86px;
  padding: 0 14px;
  color: var(--muted);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.tab-button.is-active {
  color: #16110a;
  border-color: rgba(240, 215, 146, 0.72);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.sections {
  display: grid;
  gap: 20px;
}

.entry-section {
  display: grid;
  gap: 12px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 2px;
}

.section-title span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(207, 167, 91, 0.08);
}

.entry-list {
  display: grid;
  gap: 12px;
}

.entry-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(9, 15, 28, 0.74);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

body.light-mode .entry-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34)),
    rgba(245, 232, 204, 0.86);
}

.entry-media {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.entry-media img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.04);
}

.year-badge {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 38px;
  padding: 6px;
  border: 1px solid rgba(207, 167, 91, 0.38);
  border-radius: var(--radius-sm);
  color: #f5ead2;
  background: rgba(8, 13, 24, 0.74);
  backdrop-filter: blur(8px);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.entry-body {
  min-width: 0;
}

.entry-body h3 {
  margin-bottom: 8px;
  color: var(--paper);
}

body.light-mode .entry-body h3 {
  color: var(--ink);
}

.entry-body p {
  margin-bottom: 12px;
  color: var(--muted);
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.55;
}

.entry-description {
  overflow: hidden;
  max-height: 3.1em;
}

.entry-card.is-expanded .entry-description {
  max-height: none;
}

.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-action {
  min-width: 42px;
  min-height: 38px;
  padding: 0 10px;
  color: var(--muted);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.84rem;
}

.favorite-groups {
  display: grid;
  gap: 20px;
}

.favorite-groups h3 {
  margin-bottom: 10px;
  color: var(--paper);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

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

.favorite-item {
  width: 100%;
  min-height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  text-align: left;
}

.favorite-item strong {
  display: block;
  color: var(--paper);
  font-size: 0.92rem;
}

.favorite-item span {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empty-state {
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--dim);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.86rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: min(360px, calc(100% - 40px));
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(9, 15, 28, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-hidden {
  display: none;
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  }

  .favorites-panel {
    position: static;
    grid-column: 1 / -1;
    max-height: none;
  }

  .favorite-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  :root {
    --topbar: 64px;
  }

  .topbar {
    padding: 0 16px;
  }

  .topnav {
    display: none;
  }

  .hero {
    min-height: calc(82svh - var(--topbar));
    padding: 56px 24px 72px;
    background:
      linear-gradient(180deg, rgba(8, 13, 24, 0.7), rgba(8, 13, 24, 0.96)),
      url("assets/paper-texture.png") center / 460px,
      linear-gradient(135deg, var(--night), var(--navy-2));
  }

  .hero-content {
    padding-top: 0;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .welcome {
    font-size: 1.05rem;
  }

  .section-inner {
    width: min(100% - 28px, 720px);
  }

  .today-grid,
  .app-shell,
  .date-hero {
    grid-template-columns: 1fr;
  }

  .app-shell {
    width: min(100% - 24px, 720px);
    gap: 16px;
    padding-top: 18px;
  }

  .calendar-panel,
  .favorites-panel {
    position: static;
    max-height: none;
    padding: 16px;
  }

  .date-actions {
    justify-content: start;
    min-width: 0;
  }

  .action-button {
    flex: 1 1 170px;
  }

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

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand-copy small {
    display: none;
  }

  .install-button {
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .install-button span {
    display: none;
  }

  .hero {
    padding: 34px 18px 56px;
  }

  .hero-content {
    padding-top: 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .section-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
  }

  .today-band {
    padding: 26px 0;
  }

  .month-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .day-grid {
    gap: 5px;
  }

  .entry-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .entry-media,
  .entry-media img {
    min-height: 190px;
  }

  .year-badge {
    left: 10px;
    right: auto;
    min-width: 82px;
  }

  .quote-block,
  .date-hero {
    padding: 18px;
  }

  .quote-block p {
    font-size: 1.08rem;
  }

  .quote-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-footer .card-action {
    width: 100%;
  }
}

@media (max-width: 880px) {
  body.light-mode .hero {
    background:
      linear-gradient(180deg, rgba(255, 248, 234, 0.86), rgba(234, 220, 189, 0.95)),
      url("assets/paper-texture.png") center / 460px,
      linear-gradient(135deg, #f7ecd4, #eadcbd);
  }
}
