@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f6f2;
  --ink: #131313;
  --muted: #6a6a6a;
  --line: rgba(19, 19, 19, 0.12);
  --accent: #d45a47;
  --max-width: 1080px;
}

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

body {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

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

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

.hero {
  padding: 32px 24px 64px;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-family: "Manrope", "Zen Old Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  animation: fade-up 0.8s ease-out both;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

h1 {
  font-family: "Manrope", "Zen Old Mincho", serif;
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  font-family: "Manrope", "Zen Old Mincho", serif;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "Manrope", "Zen Old Mincho", serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image img {
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 56px 24px;
  border-top: 1px solid var(--line);
}

.section.muted {
  background: #f1f0eb;
}

.section-head {
  max-width: var(--max-width);
  margin: 0 auto 28px;
}

.section-head h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
  max-width: 560px;
}

.simple-list {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.simple-list h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.simple-list p {
  color: var(--muted);
}

.contact-list {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  font-size: 15px;
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer {
  padding: 32px 24px 48px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}
