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

:root {
  --cream: #F5F0E8;
  --warm: #EDE6D6;
  --dark: #0F0E0C;
  --dark2: #1A1916;
  --gold: #B8975A;
  --gold2: #D4B483;
  --text: #0F0E0C;
  --muted: #7A7570;
  --muted2: #A89F94;
  --border: rgba(15,14,12,0.12);
  --white: #FFFFFF;
  --nav-height: 80px;
  --footer-height: 60px;
}

html {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--dark);
  color: var(--cream);
  height: 100%;
  cursor: none;
}

@media (scripting: none) {
  body, a, button { cursor: auto !important; }
  .cursor, .cursor-ring { display: none !important; }
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(184,151,90,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3.5rem;
  background: rgba(15,14,12,0);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

nav.scrolled {
  background: rgba(15,14,12,0.9);
  backdrop-filter: blur(20px);
  padding: 1.5rem 3.5rem;
  border-bottom: 1px solid rgba(245,240,232,0.05);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  z-index: 1001;
}

.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,151,90,0.4);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* PROGRESS */
.progress {
  position: fixed;
  right: 3rem; top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex; flex-direction: column; gap: 0.75rem; align-items: center;
}
.progress-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(245,240,232,0.25);
  transition: all 0.4s; cursor: pointer;
}
.progress-dot.active { background: var(--gold); transform: scale(1.5); }

/* SECTIONS */
section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  padding-bottom: var(--footer-height);
}

/* COMMON SECTION COMPONENTS */
.section-num {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.section-heading em { font-style: italic; color: var(--gold2); }

.section-body {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
  max-width: 420px;
}

/* ─── SECTION 1: HERO ─── */
.s1 { background: var(--dark); }
.s1-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: saturate(0.2);
}

.s1-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 30%, transparent 100%);
  z-index: 1;
}

.s1-content { position: relative; z-index: 2; padding: 0 3.5rem; max-width: 700px; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 2.5rem;
}
.hero-title em { font-style: italic; color: var(--gold2); }

.hero-sub {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 3.5rem;
  color: rgba(245,240,232,0.7);
}

.hero-ctas {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.btn-gold {
  background: var(--gold); color: var(--dark);
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 1.1rem 2.8rem;
  border: none; cursor: none; transition: 0.3s;
  display: inline-block;
}

.btn-link {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cream);
  text-decoration: none; position: relative;
  transition: 0.3s;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 40px; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.btn-link:hover::after { width: 100%; }

/* ─── SECTION 2: MANIFESTO ─── */
.s2 { background: var(--cream); color: var(--dark); justify-content: center; }
.s2-inner { text-align: center; padding: 0 4rem; max-width: 900px; z-index: 2;}

.s2-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 3rem;
  font-weight: 300;
}

.s2-quote em { font-style: italic; color: var(--gold); }
.s2-rule { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 2rem; }
.s2-attr {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── SECTION 3: SERVICES ─── */
.s3 { background: var(--dark2); align-items: stretch; }
.s3-inner { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
.s3-left { padding: 5rem 4rem; border-right: 1px solid rgba(245,240,232,0.06); display: flex; flex-direction: column; justify-content: center;}

.s3-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 4rem;
  border-bottom: 1px solid rgba(245,240,232,0.06);
  cursor: none;
  transition: background 0.4s;
}

.service-item:hover { background: rgba(245,240,232,0.02); }
.service-item:last-child { border-bottom: none; }

.service-num-small {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold);
  width: 20px;
}

.service-content { flex: 1; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 0.25rem; }
.service-desc { font-size: 0.85rem; color: rgba(245,240,232,0.4); letter-spacing: 0.02em; }
.service-arrow { color: var(--gold); font-size: 1.2rem; opacity: 0.3; transition: transform 0.4s, opacity 0.4s; }
.service-item:hover .service-arrow { opacity: 1; transform: translateX(10px); }

/* ─── SECTION 4: FEATURED ─── */
.s4 { background: var(--dark2); }
.s4-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?q=80&w=2070');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.s4-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 0 5%;
  align-items: center;
  gap: 8rem;
}

.s4-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.s4-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.s4-title em { font-style: italic; color: var(--gold2); }

.s4-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  border-top: 1px solid rgba(245,240,232,0.06);
  padding-top: 2rem;
  max-width: 400px;
}

.s4-meta-key {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.s4-meta-val { font-size: 0.9rem; color: var(--cream); }

.project-frame {
  width: 100%; aspect-ratio: 4/5;
  border: 1px solid rgba(184,151,90,0.15);
  position: relative; overflow: hidden;
}

.project-img-full {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?q=80&w=2070');
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
}

.project-frame:hover .project-img-full { transform: scale(1.05); }

.project-tag {
  position: absolute;
  bottom: 2rem; right: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}

/* ─── SECTION 5: PROCESS ─── */
.s5 { background: var(--cream); color: var(--dark); align-items: stretch; }

.s5-inner { display: grid; grid-template-columns: 1fr 1.2fr; width: 100%; }

.s5-left {
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(15,14,12,0.06);
}

.process-grid { display: grid; grid-template-columns: 1fr 1fr; }

.process-step {
  padding: 4rem;
  border-bottom: 1px solid rgba(15,14,12,0.06);
  border-right: 1px solid rgba(15,14,12,0.06);
}

.process-step:nth-child(even) { border-right: none; }
.process-step:nth-child(3), .process-step:nth-child(4) { border-bottom: none; }

.step-num { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; color: var(--gold); margin-bottom: 1.5rem; }
.step-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 1rem; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── SECTION 6: CTA ─── */
.s6 { background: var(--dark); justify-content: center; text-align: center; }
.s6-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1449156001933-468b7b25e54c?q=80&w=2070');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: grayscale(1);
}

.s6-content { position: relative; z-index: 2; padding: 0 5%; max-width: 900px; }
.s6-eyebrow { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.s6-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.05; margin-bottom: 2.5rem; }
.s6-title em { font-style: italic; color: var(--gold2); }
.s6-sub { font-size: 1.2rem; color: rgba(245,240,232,0.5); max-width: 600px; margin: 0 auto 4rem; line-height: 1.6; }
.s6-ctas { display: flex; gap: 2rem; justify-content: center; }
.s6-btn { background: var(--gold); color: var(--dark); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 1.2rem 3rem; font-weight: 500; transition: 0.3s; }
.s6-btn:hover { background: var(--gold2); transform: translateY(-3px); }
.s6-btn-ghost { border: 1px solid rgba(184,151,90,0.3); color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 1.2rem 3rem; transition: 0.3s; }
.s6-btn-ghost:hover { border-color: var(--gold); background: rgba(184,151,90,0.05); }

/* FOOTER BAR */
.footer-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 400; display: flex; justify-content: space-between;
  align-items: center; padding: 1.25rem 3.5rem;
  background: rgba(15,14,12,0.8); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(245,240,232,0.05);
}

.footer-loc { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.3); }

/* ANIMATIONS */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* RESPONSIVENESS */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding: 1.5rem 2rem; }
  .progress { right: 1.5rem; }
  .s4-content { gap: 4rem; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring, .progress { display: none !important; }

  nav .nav-links, nav .nav-cta { display: none; }
  .nav-hamburger { display: block; }

  body.nav-open { overflow: hidden; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--dark);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
  }
  body.nav-open .nav-links a { font-size: 1.5rem; color: var(--cream); }

  section { height: auto; min-height: 100vh; padding: 6rem 1.5rem 8rem; }
  html { scroll-snap-type: none; }

  .hero-title { font-size: 3.5rem; }
  .section-heading { font-size: clamp(2.5rem, 8vw, 3rem); }

  .s3-inner, .s4-content, .s5-inner { grid-template-columns: 1fr; width: 100%; }
  .s3-left, .s5-left { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.06); padding: 4rem 1rem; }
  .s3-right, .s5-right { padding: 4rem 0; }

  .service-item { padding: 2rem 1rem; gap: 1.5rem; }
  .service-name { font-size: 1.4rem; }

  .s4-content { padding: 0 1rem; gap: 3rem; }
  .s4-title { font-size: 3rem; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid rgba(15,14,12,0.06) !important; padding: 3rem 1rem; }
  .process-step:last-child { border-bottom: none !important; }

  .s6-ctas { flex-direction: column; gap: 1rem; align-items: stretch; }
  .s6-btn, .s6-btn-ghost { text-align: center; }

  .footer-bar { position: relative; padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
}
