/* ── Reset & Base ── */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #fafaf8;
  color: #1f1f1e;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */

.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.narrow {
  max-width: 640px;
}

/* ── Typography ── */

h1, h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: #1f1f1e;
}

p {
  color: #3a3a38;
}

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

/* ── Rule ── */

.rule {
  width: 40px;
  height: 1px;
  background-color: #c8c4bc;
  margin: 2.5rem 0;
}

/* ── Header ── */

.site-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e5df;
  background-color: #fafaf8;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: #1f1f1e;
}

.header-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #787874;
  transition: color 0.2s ease;
}

.header-link:hover {
  color: #1f1f1e;
}

/* ── Hero ── */

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

.hero-name {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #4a4a48;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.hero-location {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9893;
}

/* ── Intro ── */

.intro {
  padding: 2rem 0 5rem;
}

.intro p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.85;
  color: #3a3a38;
}

/* ── Principles ── */

.principles {
  padding: 5rem 0;
  border-top: 1px solid #e8e5df;
  border-bottom: 1px solid #e8e5df;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.principle h2 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
}

.principle p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: #5a5a58;
}

/* ── Contact ── */

.contact {
  padding: 5rem 0 4rem;
}

.contact-heading {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.contact-body {
  font-size: 0.97rem;
  color: #5a5a58;
  margin-bottom: 1.5rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.05rem;
  font-family: 'EB Garamond', Georgia, serif;
  color: #1f1f1e;
  border-bottom: 1px solid #c8c4bc;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-email:hover {
  color: #4a4a48;
  border-color: #4a4a48;
}

/* ── Footer ── */

.site-footer {
  padding: 2rem 0;
  background-color: #f3f1ec;
  border-top: 1px solid #e8e5df;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer span {
  font-size: 0.78rem;
  color: #9a9893;
  letter-spacing: 0.03em;
}

/* ── Responsive ── */

@media (max-width: 680px) {
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .break {
    display: none;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .wordmark {
    font-size: 0.92rem;
  }

  .hero-name {
    font-size: 2rem;
  }
}
