@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-latin-ext-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree-latin-ext-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  font-family: "Figtree", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --pulse-font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --pulse-font-body: "Figtree", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #171210;
  --paper: #f7f2ec;
  --bright: #fffdf9;
  --red: #e3261c;
  --red-control: #bd1f18;
  --red-soft: #f8dfda;
  --gold: #9d7133;
  --body: #514740;
  --muted: #756861;
  --rule: rgba(72, 47, 39, 0.16);
  --shadow: 0 24px 70px rgba(72, 42, 33, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(227, 38, 28, 0.09), transparent 28rem),
    radial-gradient(circle at 92% 32%, rgba(157, 113, 51, 0.12), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--pulse-font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

main {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
  padding: 36px 0 88px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px 26px 10px 10px;
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(52, 30, 24, 0.14);
  color: var(--bright);
  padding: 18px 22px;
}

header a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
}

header a i {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

header a i::after {
  position: absolute;
  inset: 19px 8px auto;
  height: 3px;
  border-radius: 999px;
  background: var(--bright);
  content: "";
  transform: skewY(-24deg);
}

header strong {
  font-family: var(--pulse-font-display);
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1;
}

header > span {
  max-width: 240px;
  color: #e7c980;
  font-family: var(--pulse-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: right;
}

article {
  margin-top: 14px;
  border: 1px solid var(--rule);
  border-radius: 10px 10px 32px 32px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: var(--shadow);
  padding: clamp(32px, 6.5vw, 68px);
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--pulse-font-display);
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(52px, 8.4vw, 84px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  margin: 44px 0 12px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

p,
li {
  color: var(--body);
  font-size: 17px;
  line-height: 1.72;
}

p {
  max-width: 74ch;
}

li + li {
  margin-top: 9px;
}

a {
  color: var(--red-control);
  font-weight: 650;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.16em;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.015em;
  line-height: 1.25;
}

.delete-card {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  border: 1px solid rgba(189, 31, 24, 0.18);
  border-radius: 22px;
  background: var(--red-soft);
  padding: 24px;
}

.delete-card > strong {
  color: var(--ink);
  font-family: var(--pulse-font-display);
  font-size: 22px;
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.delete-card p {
  margin: 0;
}

.delete-action,
.service-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-family: var(--pulse-font-body);
  font-weight: 750;
  line-height: 1.2;
}

.delete-action {
  width: fit-content;
  margin-top: 4px;
  background: var(--red-control);
  box-shadow: 0 10px 24px rgba(143, 22, 16, 0.16);
  color: #fff;
  padding: 0 22px;
  text-decoration: none;
}

.delete-action:hover {
  background: #a81913;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}

.service-links a {
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  padding: 0 18px;
  text-decoration: none;
}

.service-links a:hover {
  border-color: rgba(189, 31, 24, 0.35);
  background: var(--red-soft);
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bright);
  padding: 0 18px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible {
  border-radius: 8px;
  outline: 3px solid #ffd84d;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--ink);
}

@media (max-width: 560px) {
  main {
    width: min(100% - 20px, 980px);
    padding: 10px 0 40px;
  }

  header {
    gap: 12px;
    min-height: 76px;
    border-radius: 20px 20px 8px 8px;
    padding: 14px;
  }

  header strong {
    font-size: 21px;
  }

  header > span {
    max-width: 122px;
    font-size: 11px;
  }

  article {
    margin-top: 8px;
    border-radius: 8px 8px 24px 24px;
    padding: 30px 22px 38px;
  }

  h1 {
    font-size: clamp(45px, 15vw, 58px);
  }

  h2 {
    margin-top: 36px;
  }

  p,
  li {
    font-size: 16px;
  }

  .delete-card {
    padding: 20px;
  }

  .delete-action,
  .service-links a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
