:root {
  color-scheme: light;
  --ink: #26332d;
  --muted: #617067;
  --cream: #fbf5ea;
  --paper: #fffdf8;
  --sage: #dfe9d3;
  --moss: #526a4c;
  --rose: #c77d68;
  --rose-dark: #8b4738;
  --line: rgba(38, 51, 45, 0.14);
  --shadow: 0 24px 80px rgba(47, 69, 54, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199, 125, 104, 0.22), transparent 34rem),
    radial-gradient(circle at 85% 15%, rgba(223, 233, 211, 0.9), transparent 30rem),
    linear-gradient(135deg, #fbf5ea 0%, #f4ecdd 48%, #e9efe1 100%);
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(82, 106, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 106, 76, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

a {
  color: var(--rose-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--moss);
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background: var(--moss);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(82, 106, 76, 0.22);
}

.contact-link,
.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  text-decoration: none;
}

.contact-link:hover,
.email-button:hover {
  color: var(--paper);
  background: var(--rose-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  min-height: 420px;
  padding: 56px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.88), rgba(255, 253, 248, 0.56)),
    radial-gradient(circle at 72% 22%, rgba(199, 125, 104, 0.2), transparent 22rem);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius) + 16px);
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 720px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 11vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.08em;
}

.lede {
  max-width: 64ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.updated {
  display: inline-flex;
  margin: 28px 0 0;
  padding: 8px 14px;
  color: var(--moss);
  font-size: 0.92rem;
  font-weight: 800;
  background: rgba(223, 233, 211, 0.76);
  border: 1px solid rgba(82, 106, 76, 0.12);
  border-radius: 999px;
}

.hero-card {
  align-self: end;
  padding: 28px;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(38, 51, 45, 0.24);
}

.hero-card h2 {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 1.25rem;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.86);
}

.layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 32px;
}

.toc {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 3px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(47, 69, 54, 0.1);
  backdrop-filter: blur(16px);
}

.toc p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.toc a {
  padding: 8px 10px;
  color: var(--ink);
  border-radius: 12px;
  font-size: 0.92rem;
  text-decoration: none;
}

.toc a:hover {
  background: var(--sage);
}

.policy {
  display: grid;
  gap: 18px;
}

.policy-section {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(47, 69, 54, 0.08);
}

.policy-section h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.policy-section h3 {
  margin: 30px 0 10px;
  color: var(--moss);
  font-size: 1.1rem;
}

.policy-section p {
  margin: 0 0 16px;
}

.policy-section p:last-child,
.policy-section ul:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin: 0.34rem 0;
}

li::marker {
  color: var(--rose);
}

.table-scroll {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.38);
}

th,
td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--paper);
  background: var(--moss);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(38, 51, 45, 0.95), rgba(82, 106, 76, 0.92)),
    var(--ink);
  color: var(--paper);
}

.contact-panel h2,
.contact-panel a {
  color: var(--paper);
}

.contact-panel p {
  color: rgba(255, 253, 248, 0.82);
}

.email-button {
  width: fit-content;
  background: var(--rose);
}

.coming-soon-page {
  min-height: 100vh;
}

.coming-soon {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr;
  gap: 42px;
  padding: 28px 0;
}

.coming-soon-card {
  display: grid;
  align-self: center;
  max-width: 860px;
  padding: clamp(32px, 7vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.64)),
    radial-gradient(circle at 78% 18%, rgba(199, 125, 104, 0.2), transparent 22rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) + 18px);
  box-shadow: var(--shadow);
}

.coming-soon-card h1 {
  max-width: 11ch;
}

.coming-soon-card .email-button {
  margin-top: 32px;
}

.minimal-coming-soon-page {
  min-height: 100vh;
  color: #111;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.minimal-coming-soon-page::before {
  display: none;
}

.minimal-coming-soon {
  display: grid;
  min-height: 100vh;
  place-items: center;
  width: 100%;
  margin: 0;
}

.minimal-coming-soon p {
  margin: 0;
  font-size: 16px;
}

.plain-policy-page {
  color: #111;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.plain-policy-page::before {
  display: none;
}

.plain-policy {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
  text-align: center;
}

.plain-policy h1,
.plain-policy h2,
.plain-policy h3 {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
}

.plain-policy h1 {
  max-width: none;
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 700;
}

.plain-policy h2 {
  margin: 32px 0 12px;
  font-size: 22px;
  font-weight: 700;
}

.plain-policy h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.plain-policy p {
  margin: 0 0 16px;
}

.plain-policy ul {
  margin: 0 0 16px;
  padding-left: 0;
  list-style-position: inside;
  text-align: center;
}

.plain-policy li {
  margin: 0 0 6px;
}

.plain-policy li::marker {
  color: #111;
}

.plain-policy a {
  color: #111;
}

.plain-policy table {
  min-width: 0;
  max-width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  font-size: 14px;
  text-align: center;
}

.plain-policy th,
.plain-policy td {
  padding: 10px;
  color: #111;
  border: 1px solid #ccc;
}

.plain-policy th {
  background: #f2f2f2;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 48px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 36px;
  }

  h1 {
    max-width: 10ch;
  }

  .toc {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .toc p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 24px, 1180px);
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
  }

  .site-header {
    gap: 14px;
    flex-direction: column;
  }

  .hero {
    padding: 26px;
    border-radius: 30px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .policy-section {
    border-radius: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
