:root {
  --ink: #171411;
  --paper: #f8f3ed;
  --paper-2: #efe5da;
  --clay: #9b6153;
  --moss: #5e725f;
  --plum: #6e4c63;
  --line: #d7c8ba;
  --soft: #fffaf5;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(23, 20, 17, 0.1);
  background: rgba(248, 243, 237, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: rgba(23, 20, 17, 0.72);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: stretch;
  min-height: 76vh;
  border-bottom: 1px solid rgba(23, 20, 17, 0.1);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(22px, 7vw, 92px);
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-top: 16px;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
}

h3 {
  font-size: 1.45rem;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(23, 20, 17, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--soft);
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.art-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(94, 114, 95, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(155, 97, 83, 0.18), transparent 45%),
    var(--paper-2);
}

.tattoo-sheet {
  position: absolute;
  inset: 9%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  transform: rotate(-4deg);
}

.motif {
  display: grid;
  place-items: center;
  min-height: 160px;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.74);
}

.motif svg {
  width: min(72%, 170px);
  height: auto;
}

.section {
  padding: clamp(48px, 7vw, 88px) clamp(22px, 6vw, 72px);
}

.section.narrow {
  max-width: 980px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-header p {
  max-width: 520px;
  margin: 0;
  color: rgba(23, 20, 17, 0.66);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  display: flex;
  min-height: 200px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.62);
  text-decoration: none;
}

.card p,
.copy p,
.copy li {
  color: rgba(23, 20, 17, 0.7);
}

.tag {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 999px;
  color: rgba(23, 20, 17, 0.66);
  font-size: 0.78rem;
}

.band {
  background: #e7d7ca;
}

.copy {
  max-width: 780px;
}

.copy h1 {
  font-size: clamp(2.5rem, 6vw, 5.8rem);
}

.copy h2 {
  margin-top: 42px;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

.copy p,
.copy ul,
.copy ol {
  font-size: 1.05rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 6vw, 72px);
  border-top: 1px solid rgba(23, 20, 17, 0.1);
  color: rgba(23, 20, 17, 0.6);
  font-size: 0.92rem;
}

.footer a {
  color: rgba(23, 20, 17, 0.72);
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .art-panel {
    min-height: 420px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
