/* =========================
   COLOR SYSTEM
========================= */
:root {
  --bg-light: #f5f4f2;
  --text-dark: #2b2b2b;
  --text-muted: #6a6a6a;
  --accent: #2f4f3e;
  --border-light: #e0deda;
}

/* =========================
   GLOBAL BASE
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: Georgia, serif;
  line-height: 1.6;
}

/* =========================
   HEADER + NAVIGATION
========================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: Georgia, serif;
  font-size: 28px;
  letter-spacing: 1.2px;
  font-weight: 500;
  color: var(--text-dark);
}

.brand::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin-top: 6px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* =========================
   MAIN LAYOUT
========================= */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px;
}

section {
  margin-bottom: 120px;
}

section:not(#hero)::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  opacity: 0.25;
  margin-bottom: 40px;
}

/* =========================
   TYPOGRAPHY
========================= */
h1 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 28px;
}

h2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--accent);
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 680px;
}

/* =========================
   HERO
========================= */
#hero {
  max-width: 900px;
  margin: 0 auto 120px auto;
  background: #faf9f7;
  padding: 72px 64px;
  border-left: 4px solid var(--accent);
}

#hero p {
  font-size: 18px;
  margin-top: 24px;
}

#hero h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 20px;
}

/* =========================
   BUTTONS
========================= */
.cta-buttons {
  margin-top: 48px;
  display: flex;
  gap: 16px;
}

.cta-buttons a {
  padding: 14px 28px;
  border-radius: 4px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  background: transparent;
  transition: all 0.2s ease;
}

.cta-buttons a:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* =========================
   PROCESS
========================= */
ol {
  margin: 0;
  padding-left: 20px;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.4;
}

ol li {
  margin-bottom: 8px;
}

ol li strong {
  color: var(--text-dark);
}

/* =========================
   CONTACT
========================= */
form {
  max-width: 480px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  border: 1px solid var(--border-light);
  font-family: Helvetica, Arial, sans-serif;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

button {
  padding: 12px 24px;
  font-size: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 4px;
}

button:hover {
  background: #263f32;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  font-family: Helvetica, Arial, sans-serif;
}
