*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #faf7f2;
  --cream-deep: #f4ecdf;
  --espresso: #1a0f0a;
  --brown: #2a1a12;
  --taupe: #75685f;
  --gold: #c9a96e;
  --line: rgba(26, 15, 10, 0.11);
  --white: #fffdf9;
}

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

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.75;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.82rem;
  text-decoration: none;
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(26, 15, 10, 0.07);
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
}

nav a.logo {
  display: inline-block;
  text-decoration: none;
}

nav a.logo img {
  display: block;
  width: auto;
  height: 52px;
}

nav a.back-link {
  color: var(--espresso);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.58;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

nav a.back-link:hover,
nav a.back-link:focus-visible {
  opacity: 1;
}

.page-hero {
  padding: 4.5rem 2rem 3.7rem;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin-bottom: 0.7rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.15rem, 5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.page-hero p {
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.3px;
  opacity: 0.58;
}

.content-wrap {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.lede {
  margin-bottom: 2rem;
  font-size: 1.03rem;
  line-height: 1.8;
}

.content-wrap p {
  margin-bottom: 1.05rem;
  color: var(--brown);
  font-size: 0.95rem;
  opacity: 0.88;
}

.content-wrap h2 {
  margin-top: 3rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
  color: var(--espresso);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.35;
}

.content-wrap h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.55rem;
  color: var(--espresso);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.content-wrap ul,
.content-wrap ol {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.content-wrap li {
  position: relative;
  margin-bottom: 0.46rem;
  padding-left: 1.4rem;
  color: var(--brown);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.88;
}

.content-wrap ul li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "–";
}

.content-wrap ol {
  counter-reset: item;
}

.content-wrap ol li {
  counter-increment: item;
  padding-left: 2rem;
}

.content-wrap ol li::before {
  position: absolute;
  left: 0;
  width: 1.4rem;
  color: var(--gold);
  content: counter(item) ".";
  font-weight: 600;
}

.content-wrap a {
  color: #8e6a2e;
  text-decoration: none;
  border-bottom: 1px solid rgba(142, 106, 46, 0.35);
}

.content-wrap a:hover,
.content-wrap a:focus-visible {
  border-color: #8e6a2e;
}

.notice,
.contact-block,
.action-card {
  margin: 1.35rem 0;
  padding: 1.25rem 1.45rem;
  border: 1px solid rgba(201, 169, 110, 0.23);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: rgba(201, 169, 110, 0.08);
  color: var(--espresso);
  font-size: 0.91rem;
}

.notice strong,
.contact-block strong,
.action-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.action-card {
  border-left-width: 1px;
  border-radius: 16px;
  text-align: center;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.content-wrap .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.25px;
  text-decoration: none;
}

.content-wrap .button.secondary {
  background: transparent;
  color: var(--espresso);
}

.content-wrap .button:hover,
.content-wrap .button:focus-visible {
  opacity: 0.82;
}

.table-scroll {
  width: 100%;
  margin: 1.25rem 0 1.6rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--espresso);
  background: var(--cream-deep);
  font-weight: 600;
}

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

footer {
  padding: 3rem 2rem 2rem;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
}

footer a.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

footer a.footer-logo img {
  display: block;
  width: auto;
  height: 52px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a.active {
  color: var(--gold);
  opacity: 1;
}

.footer-copy {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  opacity: 0.32;
}

@media (max-width: 600px) {
  nav {
    height: 64px;
    padding: 0 1.2rem;
  }

  nav a.logo img,
  footer a.footer-logo img {
    height: 46px;
  }

  .page-hero {
    padding: 3.1rem 1.25rem 2.7rem;
  }

  .content-wrap {
    padding: 2.7rem 1.25rem 4.5rem;
  }

  .content-wrap h2 {
    margin-top: 2.5rem;
  }

  .button-row {
    flex-direction: column;
  }

  .content-wrap .button {
    width: 100%;
  }
}
