
:root {
  --bg: #f6f2ea;
  --paper: #fffdf8;
  --ink: #171411;
  --muted: #6f675c;
  --line: #ddd4c7;
  --accent: #5b3320;
  --accent-dark: #2a1811;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: .6rem .9rem;
}

.skip-link:focus {
  left: 1rem;
}

.sale-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: .65rem 1rem;
  background: var(--accent-dark);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: .85rem;
  text-align: center;
}

.sale-bar a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: Arial, sans-serif;
  font-size: .88rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
}

.hero,
.page-hero {
  padding: 5rem 0 3rem;
}

.clean-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: end;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.06em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.share-buttons {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button,
.share-buttons a,
.share-buttons button,
.contact-form button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: .8rem 1rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  background: var(--ink);
  color: #fff;
}

.domain-card {
  padding: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.domain-card span {
  display: block;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  font-family: Arial, sans-serif;
  color: var(--muted);
}

.domain-card span:last-child {
  border-bottom: 0;
}

.section {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.two-column,
.split-panel,
.site-footer {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3rem;
}

.grid-three,
.buyer-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-three article,
.buyer-grid article,
.news-grid article,
.link-list a {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem;
}

.news-grid a,
.link-list a {
  display: block;
  text-decoration: none;
}

.news-grid span {
  display: block;
  margin-bottom: .7rem;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.check-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.check-list li {
  margin-bottom: .75rem;
}

.link-list {
  display: grid;
  gap: .75rem;
}

.prose,
.article {
  max-width: 760px;
}

.article {
  margin: 0 auto;
  padding: 5rem 1rem;
}

.article p {
  font-size: 1.05rem;
  color: var(--muted);
}

.text-link {
  font-weight: 700;
}

.site-footer {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding: 3rem 1rem 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: .65rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem;
}

.contact-form label {
  font-family: Arial, sans-serif;
  font-size: .86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .85rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-note,
.field-error {
  display: none;
  font-family: Arial, sans-serif;
  font-size: .85rem;
}

.error,
.field-error {
  color: #8c2118;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: .85rem;
}

@media (max-width: 820px) {
  .site-header,
  .clean-hero,
  .two-column,
  .split-panel,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .grid-three,
  .buyer-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding: 3.5rem 0 2rem;
  }
}
