/* Longleaf Sanctuary — shared tokens & components
   Dark, photo-led, cinematic. Forest + bone + burnished gold. */

:root {
  --black: #000000;
  --ink: #0a0a0a;
  --forest-deep: #0c1310;
  --forest: #131c16;
  --forest-mid: #1b2820;
  --forest-line: #243228;

  --bone: #efe6cf;
  --bone-soft: #d8cfb8;
  --bone-mute: #9c9682;
  --muted: #6b6555;

  --gold: #c8a45a;
  --gold-bright: #e6c281;
  --gold-warm: #d6a468;
  --amber: #d68a3c;

  --line: rgba(200, 164, 90, 0.18);
  --line-soft: rgba(239, 230, 207, 0.08);
  --hairline: rgba(239, 230, 207, 0.14);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; color: inherit; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Type */
.serif {
  font-family: "Cormorant SC", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Cormorant SC needs more weight than Marcellus to hold at display sizes.
   Apply a baseline weight to anything using the display family. */
h1, h2, h3, h4 {
  font-family: "Cormorant SC", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--bone { color: var(--bone-mute); }
.kicker {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Container */
.container { max-width: 1320px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 720px) { .container { padding: 0 24px; } }

/* ==================== Brand mark (text + frond) ==================== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
}
.brand__mark {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.brand__name {
  font-family: "Cormorant SC", "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name em {
  font-style: normal;
  display: block;
  font-size: 9px;
  letter-spacing: 0.36em;
  color: var(--gold);
  margin-top: 4px;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--solid { background: var(--gold); color: var(--ink); }
.btn--solid:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn--ghost { border-color: var(--hairline); color: var(--bone); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: transparent; }
.btn--block { width: 100%; }

/* ==================== Inputs ==================== */
.field {
  position: relative;
  display: block;
}
.field__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-mute);
  margin-bottom: 10px;
}
.input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--hairline);
  color: var(--bone);
  font-size: 15px;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.input:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.6);
}
.input::placeholder { color: var(--muted); }

/* ==================== Hairline divider ==================== */
.hr {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}

/* ==================== Imagery utility ==================== */
.cover { width: 100%; height: 100%; object-fit: cover; }

/* Cinematic vignette overlay used on hero & full-bleeds */
.vignette::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

/* Top-of-section eyebrow rule */
.section-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
}
.section-rule::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: block;
}
