:root {
  --bg: #111111;
  --bg-alt: #1a1a1a;
  --panel: #202020;
  --line: #343434;
  --text: #f0ede6;
  --muted: #b4aa98;
  --accent: #c7852f;
  --accent-soft: rgba(199, 133, 47, 0.16);
  --max-width: 1120px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    linear-gradient(180deg, rgba(199, 133, 47, 0.08), transparent 24%),
    linear-gradient(135deg, #0f0f0f, #181818 45%, #101010);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header,
.site-footer,
main {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  padding: 0.45rem;
  border: 1px solid #4a4a4a;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.6rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero,
.page-hero {
  padding: 4rem 0 2.5rem;
}

.hero-grid,
.page-hero-grid,
.section-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.page-hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

p {
  margin: 0 0 1rem;
  color: #ddd7cb;
}

.lead {
  font-size: 1.08rem;
  max-width: 42rem;
}

.hero-panel,
.card,
.contact-card,
.callout {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-panel {
  min-height: 320px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at top, rgba(199, 133, 47, 0.35), transparent 45%),
    linear-gradient(145deg, #27211a, #171717 50%, #0e0e0e);
}

.panel-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.panel-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.panel-list li {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.button.primary {
  background: var(--accent);
  color: #141414;
  font-weight: 700;
}

.button.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  padding: 1.5rem 0 3.5rem;
}

.section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.contact-card,
.callout {
  padding: 1.35rem;
}

.card p:last-child,
.contact-card p:last-child,
.callout p:last-child {
  margin-bottom: 0;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
  color: #ddd7cb;
}

.list li + li {
  margin-top: 0.45rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0.28rem;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 800px) {
  .site-header,
  .hero-grid,
  .page-hero-grid,
  .section-grid,
  .cards,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .brand {
    align-items: flex-start;
  }

  .hero,
  .page-hero {
    padding-top: 2.6rem;
  }
}
