:root {
  --bg: #f7f4ef;
  --ink: #241f1a;
  --muted: #6b6258;
  --accent: #c2603f;
  --accent-soft: #e8c9bb;
  --card: #ffffff;
  --line: #e4ddd3;
  --radius: 18px;
  --shadow: 0 18px 40px -24px rgba(60, 40, 25, 0.4);
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Georgia", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Decorative orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.orb--one {
  width: 380px; height: 380px;
  background: var(--accent-soft);
  top: -120px; right: -80px;
}
.orb--two {
  width: 320px; height: 320px;
  background: #d9e4d0;
  bottom: -140px; left: -100px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 6vw, 80px);
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 239, 0.75);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav a {
  margin-left: clamp(14px, 3vw, 28px);
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav a:hover { color: var(--accent); }

/* Layout */
main {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 40px);
}

/* Hero */
.hero {
  padding: clamp(70px, 14vw, 140px) 0 clamp(50px, 10vw, 90px);
  text-align: center;
}
.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 12px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 1;
  margin: 0 0 20px;
  font-weight: 600;
}
.tagline {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1.15rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn--solid {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--solid:hover { transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--big { font-size: 1.15rem; padding: 16px 32px; }

/* Sections */
.section { padding: clamp(50px, 9vw, 80px) 0; }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}
.section-index {
  font-family: var(--serif);
  color: var(--accent);
  font-size: 1rem;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin: 0;
  font-weight: 600;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  font-family: var(--serif);
  font-size: 3rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.about-text p { margin: 0 0 16px; color: var(--muted); }
.facts {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}
.facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.facts strong { color: var(--ink); }
.facts span { color: var(--muted); }

/* Work cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.18s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--serif);
  margin: 0 0 10px;
  font-size: 1.3rem;
}
.card p { margin: 0 0 18px; color: var(--muted); font-size: 0.98rem; }
.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 999px;
}

/* Contact */
.contact { text-align: center; }
.contact .section-head { justify-content: center; }
.contact-lead {
  max-width: 480px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.1rem;
}
.socials {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-link {
  font: inherit;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0 0 2px;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--accent); border-color: var(--accent); }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 50;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

@media (max-width: 560px) {
  .about-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .facts li { justify-content: center; gap: 8px; }
  .nav { display: none; }
}
