:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --text: #2b2f36;
  --text-muted: #6b7280;
  --accent: #8a7752;
  --accent-soft: #efe9df;
  --border: #e5e1d8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.role {
  margin-top: 12px;
  font-size: 18px;
  color: var(--text-muted);
}

/* Cards */
main {
  padding-bottom: 64px;
}

.card {
  padding: 40px 0;
}

.card h2 {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.card .container > *:not(h2) {
  background: var(--surface);
}

.card:not(.contact) .container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(43, 47, 54, 0.04);
}

.card:not(.contact) .container h2 {
  padding: 0;
  margin-bottom: 16px;
}

.office {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.desc {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 15px;
}

/* Contact */
.contact .container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(43, 47, 54, 0.04);
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

.info-list .label {
  font-size: 14px;
  color: var(--text-muted);
}

.info-list .value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

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

.call-btn {
  display: block;
  margin-top: 24px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 0;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.call-btn:hover {
  background: #776642;
}

/* Footer */
footer {
  text-align: center;
  padding: 32px 0 48px;
  color: var(--text-muted);
  font-size: 13px;
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding: 64px 0 48px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .role {
    font-size: 16px;
  }

  .card {
    padding: 24px 0;
  }

  .card:not(.contact) .container,
  .contact .container {
    padding: 24px;
    border-radius: 12px;
  }

  .office {
    font-size: 19px;
  }

  .container {
    padding: 0 20px;
  }
}
