:root {
  --ink: #111;
  --paper: #fff;
  --gray: #6b6b6b;
  --line: #e2e2e2;
  --font: "Inter", sans-serif;
  --font-signature: "Caveat", cursive;
}

.signature { font-family: var(--font-signature); font-weight: 600; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
}

img { filter: grayscale(1) contrast(1.05); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  z-index: 10;
  mix-blend-mode: difference;
  color: white;
}

.site-header .logo { font-weight: 700; letter-spacing: -0.01em; }
.site-header nav { display: flex; gap: 1.75rem; }
.site-header a { color: inherit; text-decoration: none; font-size: 0.85rem; }

/* Hero */
.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-text {
  position: absolute;
  left: 2rem;
  bottom: 3rem;
  color: white;
  max-width: 700px;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero-sub { margin-top: 1rem; font-size: 1.05rem; }
.hero-cta {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Intro */
.intro {
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.intro p { font-size: 1.3rem; line-height: 1.5; color: var(--gray); }

/* Quote blocks */
.quote-block {
  max-width: 620px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  text-align: center;
}
.quote-block.alt { background: #fafafa; max-width: 100%; padding: 4rem 2rem; }
.quote-mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--line);
  margin-bottom: 0.5rem;
}
.quote-block p:not(.quote-mark):not(.quote-author) {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto;
}
.quote-author { margin-top: 1rem; font-size: 0.85rem; color: var(--gray); }

/* Category rows */
.category {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 0;
}
.category.reverse { grid-template-columns: 1fr 1.3fr; }
.category.reverse .category-media { order: 2; }
.category.reverse .category-text { order: 1; }

.category-media img { width: 100%; height: 60vh; object-fit: cover; display: block; }
.category-text { padding: 3rem 4rem; }
.eyebrow { font-size: 0.8rem; color: var(--gray); letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.category-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; margin-bottom: 1rem; }
.category-text p { color: var(--gray); max-width: 40ch; }

@media (max-width: 800px) {
  .category, .category.reverse { grid-template-columns: 1fr; }
  .category.reverse .category-media, .category.reverse .category-text { order: unset; }
  .category-media img { height: 50vh; }
  .category-text { padding: 2rem; }
}

/* Gallery */
.gallery { padding: 4rem 0.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.gallery-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding: 5rem 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 1.25rem; }
.about-text p { color: var(--gray); margin-bottom: 1rem; max-width: 50ch; }

@media (max-width: 800px) {
  .about { grid-template-columns: 1fr; }
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band .signature { display: block; font-size: 2.2rem; margin-bottom: 1.25rem; }
.cta-band .hero-cta { border-color: var(--ink); color: var(--ink); }

/* Process */
.process { padding: 5rem 2rem; text-align: center; }
.process .eyebrow { text-align: center; margin-bottom: 1rem; }
.process-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.process-num { font-size: 0.85rem; color: var(--gray); }
.process-step h3 { font-size: 1.2rem; font-weight: 700; margin: 0.5rem 0; }
.process-step p { color: var(--gray); font-size: 0.95rem; }

@media (max-width: 700px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* Contact */
.contact { padding: 5rem 2rem; max-width: 480px; margin: 0 auto; }
.contact h2 { font-size: 2rem; font-weight: 900; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.contact-form label { font-size: 0.85rem; color: var(--gray); }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--line);
  padding: 0.75rem;
  font-family: var(--font);
  min-height: 44px;
}
.contact-form button {
  background: var(--ink);
  color: white;
  border: none;
  padding: 0.9rem;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  min-height: 44px;
}
.instagram-link { color: var(--ink); font-weight: 500; text-decoration: none; }

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}
.footer-links { display: flex; gap: 1rem; }
.footer-links a { color: var(--gray); text-decoration: none; }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* Scroll reveals */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}
