:root {
  --bg: #f3efe6;
  --bg-alt: #e7e0d2;
  --ink: #1c1917;
  --muted: #57534e;
  --accent: #0f766e;
  --accent-ink: #f0fdfa;
  --line: rgba(28, 25, 23, 0.12);
  --shadow: 0 18px 40px rgba(28, 25, 23, 0.08);
  --max: 68rem;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #d9efe9 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #f0e2c8 0%, transparent 50%),
    var(--bg);
  line-height: 1.55;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.top {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(243, 239, 230, 0.85);
  border-bottom: 1px solid var(--line);
  z-index: 5;
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.75rem;
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
}
nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
nav a:hover { color: var(--accent); }

.hero { padding: 4.5rem 0 3.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(12rem, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.hero-copy { max-width: 42rem; }
.hero-portrait {
  margin: 0;
  justify-self: end;
  width: min(100%, 22rem);
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #d6d3d1;
}
.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.85rem;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 700;
}
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
}
.cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@media (max-width: 720px) {
  .hero { padding: 3rem 0 2.5rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-portrait {
    justify-self: center;
    width: min(100%, 18rem);
    order: -1;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn.primary:hover { filter: brightness(1.05); color: var(--accent-ink); }

.section { padding: 3rem 0; }
.section.alt { background: rgba(231, 224, 210, 0.55); }
h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 0 0 1rem;
}
.section p { max-width: 42rem; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.card {
  display: block;
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}
.card:hover { transform: translateY(-3px); }
.card h3 {
  font-family: var(--serif);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.card p { margin: 0; font-size: 0.95rem; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.section-head h2 { margin-bottom: 0; }
.section-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.section-link:hover { text-decoration: underline; }

.travel-etsy {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.travel-etsy a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.travel-etsy a:hover { text-decoration: underline; }

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.1rem;
  margin-top: 1.25rem;
}
.thumb-card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}
.thumb-card:hover { transform: translateY(-3px); }
.thumb-card img {
  display: block;
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
  background: #d6d3d1;
}
.thumb-meta { padding: 1rem 1.1rem 1.15rem; }
.thumb-meta h3 {
  font-family: var(--serif);
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}
.thumb-meta p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.pub-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}
.pub {
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.pub-status {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pub-status.accepted {
  background: rgba(15, 118, 110, 0.14);
  color: #0f766e;
}
.pub-status.production {
  background: rgba(180, 120, 40, 0.16);
  color: #92400e;
}
.pub-status.review {
  background: rgba(28, 25, 23, 0.08);
  color: var(--muted);
}
.pub-title {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.4rem;
  max-width: none;
  line-height: 1.35;
}
.pub-meta {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: none;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.link-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.link-list a:hover { text-decoration: underline; }

.foot {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
