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

:root {
  --ink: #1a1a18;
  --paper: #f7f4ef;
  --red: #c0392b;
  --mid: #7a746e;
  --rule: rgba(26,26,24,0.1);
}

html { font-size: 16px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  border-bottom: 1px solid var(--rule);
  animation: fade 1s ease both;
  padding-top: 2rem;
}

.nav-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.nav-left {
  display: flex;
  flex-direction: column;
}

nav img { height: 35px; display: block; width: auto; margin-bottom: 0.75rem; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links { padding-bottom: 0.75rem; }

/* MAIN */
main {
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 4rem 6rem;
  animation: rise 1s 0.15s ease both;
}

.label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2.5rem;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h1 em { font-style: italic; color: var(--mid); }

.intro {
  font-size: 1.2rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 52ch;
  border-left: 2px solid var(--red);
  padding-left: 1.5rem;
  margin-bottom: 5rem;
}

/* PORTRAIT */
.portrait-wrap {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.portrait-wrap img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.portrait-text {
  padding-top: 0.25rem;
}

.portrait-text h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.portrait-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 46ch;
}

/* SERVICES */
.services {
  border-top: 1px solid var(--rule);
  padding-top: 3rem;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service h3 {
  font-family: 'Courier Prime', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.service p {
  font-size: 0.98rem;
  color: var(--mid);
  line-height: 1.75;
}

/* CONTACT */
.contact {
  border-top: 1px solid var(--rule);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.contact p {
  font-size: 1.05rem;
  color: var(--mid);
  font-style: italic;
}

.email {
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.15rem;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 4rem;
  border-top: 1px solid var(--rule);
  margin-top: 1.5rem;
}

footer span {
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.28);
}

/* ANIMATIONS */
@keyframes fade { from { opacity:0 } to { opacity:1 } }
@keyframes rise { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:translateY(0) } }

/* MOBILE */
@media (max-width: 640px) {
  nav { padding-top: 1rem; }
  .nav-inner { padding: 0 1.5rem; }
  nav img { height: 19px; }
  main { padding: 1rem 1.5rem 4rem; }
  .services { grid-template-columns: 1fr; gap: 2rem; }
  .contact { flex-direction: column; gap: 1.5rem; }
  .portrait-wrap { flex-direction: column; }
}
