:root {
  --green: #24352a;
  --green-soft: #2f4436;
  --sand: #ece5d3;
  --cream: #f5f0e6;
  --gold: #d9bd7e;
  --gold-deep: #9a7d3c;
  --navy: #37455b;
  --ink: #24352a;
  --muted: #5b6157;

  --serif: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --sans: "Libre Franklin", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

.wrap {
  width: min(1080px, 100% - 3rem);
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--green);
  padding: .6rem 1rem;
  z-index: 10;
}
.skip:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  background: var(--green);
  color: var(--sand);
  position: sticky;
  top: 0;
  z-index: 5;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.brand svg { width: 34px; height: 34px; }
.brand span {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--gold);
  font-size: 1.05rem;
}
.nav { display: flex; gap: 1.75rem; }
.nav a {
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .85;
}
.nav a:hover, .nav a:focus-visible { opacity: 1; color: var(--gold); }

/* Hero */
.hero {
  background: var(--green);
  color: var(--sand);
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(4.5rem, 11vw, 9rem);
}
.hero .mark { width: clamp(110px, 16vw, 160px); height: clamp(110px, 16vw, 160px); margin: 0 auto 1.75rem; }
.eyebrow {
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.15;
  margin: 0 auto 1.25rem;
  max-width: 18ch;
}
.hero p.lede {
  max-width: 52ch;
  margin: 0 auto 2.25rem;
  color: #d8d2c0;
  font-size: 1.15rem;
}

.btn {
  display: inline-block;
  padding: .85rem 1.9rem;
  background: var(--gold);
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .15s;
}
.btn:hover, .btn:focus-visible { background: #e6cf9a; }

/* Sections */
section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-sand { background: var(--sand); }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.section-head { max-width: 60ch; margin-bottom: 2.75rem; }
.section-head p { color: var(--muted); margin: 0; }
.kicker {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .75rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--sand);
  padding: 2rem 1.75rem;
  border-radius: 6px;
}
.section-sand .card { background: var(--cream); }
.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0 0 .6rem;
}
.card p { margin: 0; color: var(--muted); font-size: 1rem; }
.card .rule {
  width: 2rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.1rem;
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
}
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-deep);
  margin-bottom: .4rem;
}
.steps h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 .4rem;
}
.steps p { margin: 0; color: var(--muted); font-size: 1rem; }

/* Contact */
.contact {
  background: var(--green);
  color: var(--sand);
}
.contact h2 { color: var(--sand); }
.contact .kicker { color: var(--gold); }
.contact p { color: #d8d2c0; max-width: 52ch; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.25rem;
}
.contact-list small {
  display: block;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .15rem;
}
.contact-list a {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 189, 126, .5);
}
.contact-list a:hover, .contact-list a:focus-visible { color: var(--gold); }

/* Footer */
.site-footer {
  background: #1b2920;
  color: #a9ad9f;
  font-size: .85rem;
  padding: 1.5rem 0;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
}

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

@media (max-width: 560px) {
  .nav { gap: 1.1rem; }
  .nav a { font-size: .75rem; letter-spacing: .08em; }
  .brand span { display: none; }
}

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