@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --text: #1A1A18;
  --muted: #6B6B65;
  --accent: #1D6A4A;
  --accent-light: #E8F5EE;
  --border: #E2DED6;
  --font-serif: 'DM Serif Display', serif;
  --font-sans: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

/* Header */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }

nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  margin-left: 28px;
  transition: color 0.2s;
}

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

/* Page Hero */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 56px 40px 48px;
}

.page-hero-inner { max-width: 720px; margin: 0 auto; }

.page-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
}

.page-hero p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

/* Main content */
main {
  max-width: 720px;
  margin: 56px auto;
  padding: 0 40px;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 48px;
  margin-bottom: 24px;
}

.content-card h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.content-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.content-card p:last-child { margin-bottom: 0; }

.info-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.info-row:last-child { border-bottom: none; }

.info-label {
  color: var(--muted);
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
}

.info-value { color: var(--text); }

/* Contact form */
.form-group { margin-bottom: 20px; }

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

input, textarea, select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  transition: border-color 0.2s;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
}

textarea { min-height: 140px; resize: vertical; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 32px 40px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

@media (max-width: 640px) {
  header { padding: 0 20px; }
  .page-hero { padding: 40px 20px 32px; }
  main { padding: 0 20px; margin: 32px auto; }
  .content-card { padding: 28px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links a { margin: 0 10px; }
}
