:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.72);
  --ink: #1b2830;
  --accent: #8f4c2f;
  --line: rgba(27, 40, 48, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, #f3d7b6 0%, transparent 40%),
    radial-gradient(circle at 95% 5%, #c7d8d1 0%, transparent 36%),
    linear-gradient(165deg, #ece5da 0%, var(--bg) 45%, #e8eceb 100%);
  position: relative;
  overflow-x: hidden;
}

.wrapper {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
}

.bg-shape-a {
  width: 360px;
  height: 360px;
  background: rgba(143, 76, 47, 0.12);
  top: -120px;
  right: -80px;
}

.bg-shape-b {
  width: 280px;
  height: 280px;
  background: rgba(34, 94, 82, 0.16);
  bottom: -100px;
  left: -40px;
}

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

.home-hero {
  display: grid;
  grid-template-columns: 1fr 180px;
  grid-template-areas: "copy photo";
  gap: 1.35rem;
  align-items: center;
}

.profile-circle {
  grid-area: photo;
  justify-self: end;
  width: 180px;
  height: 180px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(27, 40, 48, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.profile-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.hero-copy {
  grid-area: copy;
  min-width: 0;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  opacity: 0.75;
}

h1 {
  margin: 0.5rem 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.subtitle,
.address,
.updated {
  margin: 0.35rem 0;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.7rem;
  padding-bottom: 2rem;
}

.nav-grid a {
  text-decoration: none;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.75rem 0.9rem;
  text-align: center;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease;
}

.nav-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 76, 47, 0.55);
}

.nav-grid a.active {
  border-color: rgba(143, 76, 47, 0.55);
  background: rgba(255, 255, 255, 0.9);
}

.sections {
  display: grid;
  gap: 1rem;
  padding-bottom: 3rem;
}

.section-content {
  max-width: 720px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(2px);
}

h2 {
  margin: 0 0 0.45rem;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  line-height: 1.6;
}

.card p + p {
  margin-top: 0.45rem;
}

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

.note {
  font-size: 0.95rem;
  opacity: 0.88;
}

.clean-list {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.6;
}

.clean-list li + li {
  margin-top: 0.35rem;
}

.wide-content {
  max-width: 960px;
}

.section-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.55rem;
}

.section-nav a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
  font-weight: 600;
}

.section-nav a:hover {
  border-color: rgba(143, 76, 47, 0.55);
}

@media (max-width: 640px) {
  .home-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "copy";
    gap: 1rem;
    text-align: center;
  }

  .profile-circle {
    width: 146px;
    height: 146px;
    margin: 0 auto;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .nav-grid a {
    font-size: 0.95rem;
  }
}
