@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&display=swap");

:root {
  --ink: #211a14;
  --ink-soft: #5e5145;
  --ink-faint: #887a6b;
  --paper: #f7f3ed;
  --paper-deep: #eee6dc;
  --white: #fffdfa;
  --gold: #bd7d2f;
  --gold-light: #ead4b5;
  --line: #ddd2c5;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "DM Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: -60px;
  left: 20px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  border-bottom: 1px solid rgba(33, 26, 20, 0.1);
  background: rgba(247, 243, 237, 0.92);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
}

.brand img {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink);
}

.header-contact {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.83rem;
  text-decoration: none;
}

.header-contact span,
.contact-email span {
  color: var(--gold);
  font-size: 1.1em;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(189, 125, 47, 0.18), transparent 25%),
    var(--paper-deep);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  min-height: 460px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.eyebrow,
.updated-line,
.nav-label,
.not-used-label {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 26px;
}

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

h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em {
  color: var(--gold);
  font-weight: 600;
}

.hero-summary {
  max-width: 470px;
  margin-bottom: 25px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(189, 125, 47, 0.14);
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 300px;
  height: 300px;
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: 204px;
  height: 204px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(33, 26, 20, 0.18);
}

.mark-ring {
  position: absolute;
  width: 286px;
  height: 286px;
  border: 1px solid rgba(189, 125, 47, 0.7);
  border-radius: 50%;
}

.mark-ring::before,
.mark-ring::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.mark-ring::before {
  top: 16px;
  left: 50%;
}

.mark-ring::after {
  right: 16px;
  bottom: 28%;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(50px, 9vw, 125px);
  padding-top: 100px;
  padding-bottom: 100px;
}

.policy-nav {
  position: sticky;
  top: 25px;
  align-self: start;
}

.nav-label {
  margin-bottom: 18px;
}

.policy-nav nav {
  display: grid;
  gap: 11px;
  border-left: 1px solid var(--line);
}

.policy-nav nav a {
  padding-left: 15px;
  color: var(--ink-faint);
  font-size: 0.82rem;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border 0.2s ease;
}

.policy-nav nav a:hover,
.policy-nav nav a.active {
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  color: var(--ink);
}

.policy-card {
  margin-top: 42px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.card-icon {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.2rem;
}

.policy-card p {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.policy-card a {
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 700;
}

.updated-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.updated-line span:last-child {
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-align: right;
}

.policy-section {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  padding: 59px 0 64px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 25px;
}

.policy-section:last-child {
  border-bottom: 0;
}

.section-number {
  padding-top: 7px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.72rem;
}

h2 {
  margin-bottom: 17px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.policy-section p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.policy-section strong {
  color: var(--ink);
  font-weight: 700;
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 620px;
  margin: 30px 0 0;
}

.details-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.details-list dt {
  margin-bottom: 6px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.details-list a {
  color: var(--gold);
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 29px;
}

.two-column-list > div {
  padding: 23px 24px 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.two-column-list li {
  position: relative;
  padding: 6px 0 6px 19px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.two-column-list li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.pill-list span {
  padding: 7px 12px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
}

.pill-list.quiet span {
  background: transparent;
}

.notice {
  display: flex;
  gap: 14px;
  max-width: 680px;
  margin: 26px 0 18px;
  padding: 18px 20px;
  background: #f2e6d5;
  border-left: 3px solid var(--gold);
}

.notice-icon {
  display: grid;
  flex: 0 0 21px;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
}

.notice p {
  margin: 0;
  color: var(--ink);
  font-size: 0.87rem;
  line-height: 1.55;
}

.muted {
  color: var(--ink-faint) !important;
  font-size: 0.84rem !important;
}

.check-list {
  display: grid;
  gap: 8px;
  max-width: 600px;
  margin: 20px 0 22px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.not-used-label {
  margin: 30px 0 0;
}

.path-note {
  display: inline-block;
  margin: 7px 0 13px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.74rem !important;
  line-height: 1.65;
}

.path-note span {
  padding: 0 4px;
  color: var(--gold);
}

.compact-section {
  padding-top: 45px;
  padding-bottom: 45px;
}

.contact-section {
  padding-bottom: 0;
}

.contact-email {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  text-decoration: none;
}

.contact-package {
  color: var(--ink-faint) !important;
  font-family: var(--mono);
  font-size: 0.73rem !important;
  line-height: 1.7 !important;
}

.site-footer {
  background: var(--ink);
}

.footer-inner {
  min-height: 100px;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand img {
  border: 1px solid rgba(234, 212, 181, 0.25);
}

.footer-inner p {
  margin: 0;
  color: #a99c8d;
  font-family: var(--mono);
  font-size: 0.7rem;
}

@media (max-width: 800px) {
  .container {
    width: min(100% - 40px, 640px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 60px;
  }

  .hero-mark {
    position: absolute;
    top: 38px;
    right: -45px;
    width: 190px;
    height: 190px;
    opacity: 0.32;
  }

  .hero-mark img {
    width: 135px;
    height: 135px;
  }

  .mark-ring {
    width: 180px;
    height: 180px;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .policy-layout {
    display: block;
    padding-top: 65px;
    padding-bottom: 70px;
  }

  .policy-nav {
    position: static;
    margin-bottom: 63px;
  }

  .policy-nav nav {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    border-left: 0;
  }

  .policy-nav nav a,
  .policy-nav nav a:hover,
  .policy-nav nav a.active {
    padding: 0 0 4px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-nav nav a.active {
    border-bottom-color: var(--gold);
  }

  .policy-card {
    display: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 9px;
    font-size: 0.66rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-contact {
    font-size: 0.74rem;
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero-summary {
    max-width: 300px;
    font-size: 0.94rem;
  }

  .updated-line {
    display: grid;
    gap: 8px;
  }

  .updated-line span:last-child {
    text-align: left;
  }

  .policy-section {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 12px;
    padding: 46px 0 50px;
  }

  .two-column-list,
  .details-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .two-column-list > div {
    padding: 18px 19px 13px;
  }

  .footer-inner {
    display: grid;
    gap: 10px;
    align-content: center;
  }
}

@media print {
  .site-header,
  .policy-nav,
  .site-footer,
  .hero-mark {
    display: none;
  }

  .hero {
    background: transparent;
  }

  .hero-grid {
    min-height: auto;
    padding: 20px 0 30px;
  }

  .policy-layout {
    display: block;
    padding: 0;
  }

  .policy-section {
    break-inside: avoid;
  }
}