@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Jost:wght@300;400&display=swap');

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

body {
  background: #1a1208;
  color: #f5ede0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

.site {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 0.5px solid rgba(232,224,208,0.2);
}

.nav-title {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #e8e0d0;
  text-decoration: none;
}

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: #e8e0d0; }

/* HERO */
.hero {
  padding: 5rem 0 2rem;
  text-align: center;
}

.hero-ornament {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e8e0d0;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hero h1 {
  font-family: 'EB Garamond', serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.hero h1 .cream { color: #e8e0d0; }
.hero h1 em { font-style: italic; color: #e8789a; }

.hero-sub {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.35);
  margin-top: 1.5rem;
}

/* OPENING IMAGE */
.opening-image {
  margin: 2rem 0 0;
}

.opening-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* DIVIDERS */
.cream-line {
  width: 60px;
  height: 0.5px;
  background: #e8e0d0;
  margin: 3rem auto;
  opacity: 0.3;
}

.act-divider {
  width: 30px;
  height: 0.5px;
  background: rgba(232,224,208,0.15);
  margin: 3rem auto;
}

/* IMAGES */
#work {
  padding: 0 0 3rem;
}

.images-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,224,208,0.4);
  text-align: center;
  margin-bottom: 3rem;
}

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.img-wrap {
  overflow: hidden;
  background: #1a1208;
}

.img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.9) brightness(0.95);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.img-wrap:hover img {
  transform: scale(1.02);
  filter: saturate(1.05) brightness(1.0);
}

/* PROJECT SUMMARY */
#summary {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
  border-top: 0.5px solid rgba(232,224,208,0.12);
}

#summary h2 {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #f5ede0;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

#summary p {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(245,237,224,0.82);
  font-style: italic;
}

#summary .closing {
  margin-top: 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #e8789a;
}

/* ABOUT */
#about {
  padding: 4rem 0;
  border-top: 0.5px solid rgba(232,224,208,0.12);
}

#about h2 {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #f5ede0;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.02em;
}

#about p {
  font-family: 'EB Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(245,237,224,0.65);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* CONTACT */
#contact {
  padding: 4rem 0 5rem;
  border-top: 0.5px solid rgba(232,224,208,0.12);
  text-align: center;
}

#contact h2 {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #f5ede0;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

#contact p {
  font-size: 13px;
  color: rgba(245,237,224,0.4);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto 1rem;
  letter-spacing: 0.03em;
}

.contact-email {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  color: rgba(232,224,208,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: block;
}

.contact-btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 0.5px solid rgba(232,120,154,0.4);
  color: #e8789a;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.contact-btn:hover {
  background: rgba(232,120,154,0.08);
  border-color: #e8789a;
}

/* FOOTER */
footer {
  border-top: 0.5px solid rgba(232,224,208,0.08);
  padding: 2rem 0;
  text-align: center;
}

footer p {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.18);
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 { font-size: 52px; }
  .pair { grid-template-columns: 1fr; }
  .nav-links { gap: 1rem; }
}
