/* theartofcraftsmanship.com */

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

:root {
  --bg:     #100f0d;
  --fg:     #d8d2c4;
  --copper: #b07840;
  --dim:    rgba(216,210,196,0.4);
  --rule:   rgba(176,120,64,0.16);
  --faint:  rgba(176,120,64,0.05);
  --muted:  #5a4830;
}
[data-theme="light"] {
  --bg:     #d8d2c4;
  --fg:     #100f0d;
  --copper: #8a5a28;
  --dim:    rgba(16,15,13,0.4);
  --rule:   rgba(138,90,40,0.16);
  --faint:  rgba(138,90,40,0.05);
  --muted:  #8a7860;
}

html { font-size: 16px; }
body {
  background-color: var(--bg);
  background-image: url('parchment-speckle-dark.jpg');
  background-repeat: repeat; background-size: 512px 512px;
  color: var(--fg); font-family: 'IM Fell English', Georgia, serif;
  min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden;
}
[data-theme="light"] body { background-image: url('parchment-speckle-light.jpg'); }

/* HEADER */
header { padding: 1.8rem 2.5rem; border-bottom: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; }
.wordmark { font-family: 'IM Fell English', serif; font-size: 0.9rem; font-style: italic; letter-spacing: 0.04em; color: var(--fg); opacity: 0.55; }
.toggle-btn {
  background: none; border: 1px solid var(--rule); color: var(--copper);
  font-family: 'IM Fell English', serif; font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.3rem 0.7rem; cursor: pointer; opacity: 0.55;
}
.toggle-btn:hover { opacity: 1; border-color: var(--copper); }

/* HERO */
.hero { padding: 6.5rem 2.5rem 5rem; border-bottom: 1px solid var(--rule); }
.hero-inner { max-width: 680px; }
h1 { font-family: 'IM Fell English', serif; font-weight: 400; font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.1; color: var(--fg); margin-bottom: 2rem; }
h1 em { font-style: italic; color: var(--copper); }
.hero-sub { font-size: 1.1rem; line-height: 1.9; color: var(--dim); font-style: italic; font-weight: 400; }

/* BODY COPY */
.body-copy { padding: 5rem 2.5rem 6rem; flex: 1; }
.content-col { max-width: 620px; }
.drop-cap { font-size: 2.3rem; line-height: 1.75; color: var(--fg); opacity: 0.88; margin-bottom: 1.8rem; font-weight: 400; }
.body-copy p { font-size: 2.1rem; line-height: 1.9; color: var(--fg); opacity: 0.5; margin-bottom: 1.6rem; font-weight: 400; }
.body-copy p em { font-style: italic; opacity: 1; color: var(--fg); }
blockquote { margin: 3rem 0; padding: 1.6rem 2rem; border-left: 2px solid rgba(176,120,64,0.38); background: var(--faint); font-size: 1.35rem; font-style: italic; font-weight: 400; color: var(--fg); line-height: 1.75; }
.inline-link { color: var(--copper); text-decoration: none; border-bottom: 1px solid rgba(176,120,64,0.3); }
.inline-link:hover { border-color: var(--copper); }
.divider { height: 1px; background: var(--rule); margin: 3rem 0; max-width: 4rem; }

/* FOOTER */
footer { padding: 1.8rem 2.5rem; border-top: 1px solid var(--rule); }
.copy { font-family: 'DM Mono', monospace; font-size: 0.58rem; opacity: 0.18; letter-spacing: 0.06em; }

/* ANIMATION */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.content-col { animation: fadeUp 0.8s 0.1s ease both; }
