:root {
  --bg: #f4efe6;
  --ink: #1a1916;
  --muted: #5f5a52;
  --line: #d9d0c2;
  --gold: #8c6d2e;
  --gold-soft: #c4a35a;
  --paper: #fffdf8;
  --max: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

a:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.6rem 0.9rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 1.1rem;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--gold);
}

.hero {
  padding: clamp(3.5rem, 10vw, 6.5rem) 0 3.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.lede {
  max-width: 34rem;
  margin: 1.1rem 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
}

.button {
  display: inline-block;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.95rem;
}

.button:hover {
  background: var(--gold);
  color: var(--paper);
}

.about,
.contact {
  padding: 0 0 3.5rem;
}

.about p {
  margin: 0;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
  word-break: break-word;
}

.contact-list a:hover {
  color: var(--gold);
}

.site-footer {
  padding: 1.6rem 0 2.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0.15rem 0;
}

@media (max-width: 560px) {
  .header-inner {
    align-items: flex-start;
    padding-block: 0.85rem;
  }

  nav {
    padding-top: 0.35rem;
  }

  .contact-list a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
