/* Rock-aesthetic template — used by who.html, what.html, privacy.html.
   Full-bleed rock.jpg, dark overlay, small handprint top-right,
   scrolling content area, nav band fixed at bottom. */

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

body {
  background: #6a5a54 url('/rock.jpg') center center / cover no-repeat;
  font-family: Georgia, serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 3, 0.58);
  z-index: 1;
  pointer-events: none;
}

#hand {
  position: fixed;
  right: 4vw;
  top: 3vh;
  width: auto;
  height: 22vh;
  opacity: 0.6;
  mix-blend-mode: screen;
  filter: sepia(0.4) saturate(0.7) brightness(0.9);
  z-index: 5;
}

/* ── Bottom nav band ── */

#band {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  height: 7vh;
  background: linear-gradient(to bottom, transparent 0%, #1a1008 40%);
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.2rem;
}

#nav {
  display: flex;
  gap: 2.8rem;
  border-top: 0.5px solid rgba(180,160,120,0.15);
  padding-top: 0.6rem;
}

#nav a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #7a6a50;
  text-decoration: none;
  font-family: Georgia, serif;
  transition: color 0.3s ease;
}

#nav a:hover { color: #b8a880; }
#nav a.active { color: #b8a880; }

/* ── Page container ── */

#page {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
  padding: 8vh 4vw 12vh;
}

#page.narrow { max-width: 760px; }

.back {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #b8a880;
  text-decoration: none;
  margin-bottom: 4vh;
  transition: color 0.3s;
}
.back:hover { color: #f0e8d0; }

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: normal;
  letter-spacing: 0.3em;
  color: #d4c8b0;
  margin-bottom: 4vh;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.effective {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: #7a6a50;
  font-style: italic;
  margin-bottom: 3.5vh;
}

/* ── Body text ── */

.body-text {
  color: #e0d4b8;
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.body-text p { margin-bottom: 1.4rem; }

.body-text h2 {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  color: #d4c8b0;
  text-transform: uppercase;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.body-text a {
  color: #b8a880;
  text-decoration: none;
  border-bottom: 1px solid rgba(184,168,128,0.3);
  transition: color 0.2s;
}
.body-text a:hover { color: #f0e8d0; }

.body-text .names {
  font-size: 1.15rem;
  color: #d4c8b0;
  letter-spacing: 0.08em;
}

.body-text .location {
  font-style: italic;
  color: #b8a880;
}

.body-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.body-text ul li {
  padding-left: 1.4rem;
  position: relative;
  color: #d4c8a0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.body-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(180,160,120,0.5);
}

/* ── Photo block (who.html) ── */

.photo-block {
  float: right;
  margin: 0 0 2rem 3rem;
  width: clamp(200px, 30vw, 320px);
}

.photo-block img {
  width: 100%;
  display: block;
  border-radius: 3px;
  filter: sepia(0.25) contrast(0.95) brightness(0.9);
  -webkit-mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, black 50%, transparent 100%);
}

.photo-block figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #7a6a50;
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}

/* ── Projects list (who.html) ── */

.projects {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(180,160,120,0.2);
}

.projects h2 {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: #d4c8b0;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.project-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.project-list li {
  color: #d4c8a0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.project-list li span {
  color: #d4c8b0;
  font-style: normal;
}

.project-list li em {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #7a6a50;
  margin-left: 0.6rem;
}

/* ── Services list (what.html) ── */

.services {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.service {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(180,160,120,0.3);
}

.service h3 {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  color: #d4c8b0;
  margin-bottom: 0.3rem;
}

.service p {
  font-size: 0.95rem;
  color: #c0b494;
  margin-bottom: 0;
  line-height: 1.7;
}

.divider {
  width: 48px;
  height: 1px;
  background: rgba(180,160,120,0.3);
  margin: 3rem 0;
}

/* ── Contact form (what.html) ── */

.contact-section h2 {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: #d4c8b0;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.contact-email {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #b8a880;
  font-style: italic;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 560px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #7a6a50;
  text-transform: uppercase;
}

input, textarea, select {
  background: rgba(15, 10, 5, 0.75);
  border: 1px solid rgba(180,160,120,0.4);
  border-radius: 2px;
  color: #e0d4b8;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(180,160,120,0.8);
  background: rgba(15, 10, 5, 0.88);
}

input::placeholder, textarea::placeholder {
  color: rgba(180,160,120,0.4);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select option {
  background: #1a1008;
  color: #e0d4b8;
}

button[type="submit"] {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(180,160,120,0.4);
  border-radius: 2px;
  color: #d4c8b0;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  padding: 0.7rem 2rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

button[type="submit"]:hover {
  border-color: rgba(180,160,120,0.8);
  color: #f0e8d0;
}
