@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap");

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

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #1e1e1e;
  background: #f6f1ea;
  line-height: 1.7;
}

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

.container {
  width: min(1080px, 90%);
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, 92%);
}

.site-header {
  background: rgba(246, 241, 234, 0.96);
  border-bottom: 1px solid #e2dbd2;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1.5rem;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-link {
  color: #4b4b46;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav-link.active,
.nav-link:hover {
  color: #1e1e1e;
}

.hero {
  padding: 6rem 0 4rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #6f675f;
  margin-bottom: 1rem;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1e1e1e;
  font-weight: 600;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  margin-bottom: 1.25rem;
  color: #1e1e1e;
  font-weight: 600;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: #4d4a45;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  padding: 0.75rem 1.7rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.button.primary {
  background: #1f4e4a;
  color: #fff;
}

.button.primary:hover {
  background: #183f3b;
}

.button.ghost {
  border-color: #1f4e4a;
  color: #1f4e4a;
  background: transparent;
}

.button.ghost:hover {
  background: rgba(31, 78, 74, 0.08);
}

.section {
  padding: 3.5rem 0 4.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.card {
  background: #faf7f2;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid #e6dfd6;
  box-shadow: 0 10px 25px rgba(30, 30, 30, 0.08);
}

.contact-card {
  display: grid;
  gap: 1.5rem;
  background: #faf7f2;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e6dfd6;
  box-shadow: 0 10px 25px rgba(30, 30, 30, 0.08);
}

.contact-card a {
  color: #1f4e4a;
  font-weight: 600;
}

.hint {
  font-size: 0.9rem;
  color: #7a736c;
}

.note {
  margin-top: 2.5rem;
  color: #7a736c;
  font-size: 0.95rem;
}

.placeholder {
  background: #faf7f2;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px dashed #c7beb3;
}

.articles-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.article-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem;
  background: #fffdf9;
  border-radius: 1.25rem;
  border: 1px solid #e6dfd6;
}

.article-card img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.article-meta {
  font-size: 0.9rem;
  color: #7a736c;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: #7a736c;
  font-size: 0.9rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.portrait {
  background: #ebe4da;
  border-radius: 1.5rem;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border: 1px solid #e0d7cd;
}

.portrait img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 1.25rem;
}

.list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.list-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #4d4a45;
}

.list-item::before {
  content: "—";
  color: #1f4e4a;
}

.section-muted {
  background: #f1ebe2;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.mobile-contact {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.75rem;
  z-index: 20;
}

.mobile-contact .button {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .mobile-contact {
    display: flex;
  }
}
