:root {
  --cream: #faf6ee;
  --warm-white: #fffdf9;
  --charcoal: #1c1917;
  --warm-grey: #78716c;
  --sand: #e8dfd3;
  --terra: #b5542a;
  --navy: #1a2d4a;
  --gold: #c9a96e;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  mix-blend-mode: difference;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
}
.nav-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,16,12,0.85) 0%,
    rgba(20,16,12,0.3) 50%,
    rgba(20,16,12,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Sections */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.section-sub {
  font-size: 0.95rem;
  color: var(--warm-grey);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 0.8rem;
}

/* Manifesto */
.manifesto {
  background: var(--charcoal);
  padding: 7rem 3rem;
}
.manifesto-inner {
  max-width: 740px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* Territorio */
.territorio {
  background: var(--cream);
  padding: 7rem 3rem;
}
.territorio-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.territorio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.territorio-card {
  overflow: hidden;
}
.territorio-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--sand);
}
.territorio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: sepia(20%) saturate(90%);
}
.territorio-card:hover .territorio-img {
  transform: scale(1.04);
}
.territorio-text {
  padding: 1.4rem 0 0;
}
.territorio-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.territorio-text p {
  font-size: 0.85rem;
  color: var(--warm-grey);
  line-height: 1.65;
}

/* Process */
.process {
  background: var(--warm-white);
  padding: 7rem 3rem;
}
.process-header {
  max-width: 740px;
  margin: 0 auto 4rem;
  text-align: center;
}
.process-header .section-sub { margin: 0.8rem auto 0; }
.process-steps {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--sand);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  opacity: 0.7;
}
.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.step-body p {
  font-size: 0.95rem;
  color: var(--warm-grey);
  line-height: 1.7;
}
.process-note {
  max-width: 740px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  border: 1px solid var(--sand);
  text-align: center;
}
.process-note p {
  font-size: 0.9rem;
  color: var(--warm-grey);
  font-style: italic;
}

/* Closing */
.closing {
  background: var(--sand);
  padding: 7rem 3rem;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* Footer */
.footer {
  background: var(--charcoal);
  padding: 3rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.footer-sep {
  color: rgba(255,255,255,0.3);
}
.footer-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 1.2rem 1.5rem; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .manifesto, .territorio, .process, .closing { padding: 5rem 1.5rem; }
  .territorio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .territorio-img-wrap { aspect-ratio: 4/5; }
  .process-step { grid-template-columns: 56px 1fr; gap: 1rem; }
  .step-num { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .territorio-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.4rem; }
}