/* ==========================================================================
   V2 Experiences — styles.css
   Palette: forest green / terracotta / cream · Type: Space Grotesk + Manrope
   ========================================================================== */

:root {
  --green-950: #0c2b21;
  --green-900: #103828;
  --green-700: #1b5c42;
  --terra: #d96f4e;
  --terra-dark: #b85436;
  --terra-soft: #f3d9cf;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --ink: #1d2622;
  --ink-soft: #56635d;
  --line: #e5dfd2;
  --radius: 6px;
  --wrap: 1180px;
  --font-display: "Space Grotesk", "Helvetica Neue", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 26px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }

a { color: inherit; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-solid { background: var(--terra); color: #fff; }
.btn-solid:hover { background: var(--terra-dark); }

.btn-line {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(246, 241, 231, 0.45);
}
.btn-line:hover { border-color: var(--cream); }

.btn-small { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

.text-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--terra-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--terra-soft);
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
}
.text-link:hover { border-color: var(--terra); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-950);
  color: var(--cream);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--terra);
  color: var(--green-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-display); font-size: 1.08rem; letter-spacing: 0.02em; }
.brand-text small { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: #9eb5a9; }

.main-nav { display: flex; gap: 26px; }
.main-nav a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  color: #c8d6cd;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover { color: #fff; border-color: var(--terra); }

.header-tools { display: flex; align-items: center; gap: 18px; }

.lang-switch { display: flex; border: 1px solid rgba(246, 241, 231, 0.3); border-radius: var(--radius); overflow: hidden; }
.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #9eb5a9;
  padding: 6px 11px;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch button:hover { color: var(--cream); }
.lang-switch button.active { background: var(--cream); color: var(--green-950); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (split, dark) ---------- */

.hero { background: var(--green-950); color: var(--cream); overflow: hidden; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 92px;
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--terra); }

.hero-sub {
  font-size: 1.08rem;
  color: #b9cabf;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-contact { font-size: 0.95rem; color: #9eb5a9; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-contact a { color: var(--cream); text-decoration: none; font-weight: 600; }
.hero-contact a:hover { color: var(--terra); }

.hero-media { position: relative; min-height: 420px; }

.hero-img-main {
  width: 88%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-left: auto;
}

.hero-img-card {
  position: absolute;
  left: 0;
  bottom: -36px;
  width: 46%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--green-950);
}

.hero-badge {
  position: absolute;
  top: -16px;
  right: -8px;
  background: var(--terra);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--radius);
}

/* ---------- Stats band ---------- */

.stats-band { background: var(--terra); color: #fff; }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.stats-inner div { display: flex; flex-direction: column; line-height: 1.4; }
.stats-inner strong { font-family: var(--font-display); font-size: 1.15rem; }
.stats-inner span { font-size: 0.88rem; opacity: 0.85; }

/* ---------- Sections ---------- */

.section { padding: 100px 0; }

.section-head { max-width: 640px; margin-bottom: 58px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-dark);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--terra); }

.section-head h2 { color: var(--green-950); }

.section-cream { background: var(--cream); }

.section-dark { background: var(--green-950); color: #c8d6cd; }
.section-dark h2 { color: #fff; }

/* ---------- Services rows ---------- */

.svc-rows { border-top: 1px solid var(--line); }

.svc-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.svc-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--terra);
}

.svc-title h3 { font-size: 1.45rem; color: var(--green-950); }

.svc-body p { color: var(--ink-soft); margin-bottom: 16px; }

.svc-body ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-body ul li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  background: rgba(27, 92, 66, 0.08);
  border: 1px solid rgba(27, 92, 66, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ---------- Specialty photo cards ---------- */

.spec-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.spec-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.spec-media { aspect-ratio: 16 / 9; overflow: hidden; }
.spec-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.spec-card:hover .spec-media img { transform: scale(1.04); }

.spec-body { padding: 32px 32px 36px; }
.spec-body h3 { font-size: 1.4rem; color: var(--green-950); margin-bottom: 12px; }
.spec-body > p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 18px; }

.dash-list { list-style: none; margin-bottom: 22px; }
.dash-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.93rem;
  margin-bottom: 8px;
}
.dash-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 2px;
  background: var(--terra);
}

/* ---------- Projects: featured + grid ---------- */

.proj-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.proj {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-950);
}

.proj-featured { grid-column: span 2; grid-row: span 2; }

.proj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.proj:hover img { transform: scale(1.04); opacity: 0.85; }

.proj figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(12, 43, 33, 0.92) 0%, rgba(12, 43, 33, 0.4) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proj-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}

.proj figcaption strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
}

.proj-featured figcaption strong { font-size: 1.3rem; }

.proj-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Process timeline ---------- */

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.process-intro { position: sticky; top: 110px; }
.process-lead { margin-top: 16px; color: #9eb5a9; max-width: 380px; }

.timeline {
  list-style: none;
  counter-reset: step;
  border-left: 2px solid rgba(217, 111, 78, 0.4);
  padding-left: 0;
}

.timeline li {
  counter-increment: step;
  position: relative;
  padding: 0 0 42px 58px;
}
.timeline li:last-child { padding-bottom: 0; }

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: -21px;
  top: -2px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--terra);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
}

.timeline h3 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.timeline p { font-size: 0.95rem; color: #9eb5a9; max-width: 460px; }

/* ---------- About / studio statement ---------- */

.about-wrap { max-width: 880px; }

.about-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--green-950);
  margin-bottom: 44px;
}
.about-statement em { font-style: normal; color: var(--terra-dark); }

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.about-facts strong { display: block; font-family: var(--font-display); color: var(--green-950); margin-bottom: 4px; }
.about-facts span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h2 { color: var(--green-950); margin-bottom: 10px; font-size: 1.7rem; }
.form-lead { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 26px; }

.contact-form label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-950);
  margin-bottom: 16px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--terra); background: #fff; }

.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; }

.form-note { margin-top: 14px; font-size: 0.8rem; color: var(--ink-soft); text-align: center; }
.form-note.success { color: var(--green-700); font-weight: 600; }
.form-note.error { color: var(--terra-dark); font-weight: 600; }

.contact-aside { padding-top: 16px; }
.contact-aside h3 { font-size: 1.3rem; color: var(--green-950); margin-bottom: 22px; }

.contact-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--green-950);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s ease;
}
.contact-big:hover { color: var(--terra-dark); }

.contact-area { padding-top: 22px; display: flex; flex-direction: column; gap: 4px; }
.contact-area span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-dark);
}
.contact-area strong { color: var(--green-950); }

/* ---------- Footer ---------- */

.site-footer { background: var(--green-950); color: #9eb5a9; }

.footer-top { padding-top: 60px; overflow: hidden; }

.footer-wordmark {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 8.5vw, 6.2rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(246, 241, 231, 0.09);
  white-space: nowrap;
  user-select: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 40px;
  padding-top: 34px;
  padding-bottom: 38px;
}

.footer-tag { font-size: 0.9rem; max-width: 320px; }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a {
  text-decoration: none;
  font-size: 0.92rem;
  color: #9eb5a9;
  transition: color 0.15s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--terra); }

.footer-legal {
  border-top: 1px solid rgba(246, 241, 231, 0.1);
  padding-top: 20px;
  padding-bottom: 26px;
}
.footer-legal p { font-size: 0.82rem; color: #6f8579; }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero-media { min-height: 0; }
  .hero-img-main { width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 60px 1fr; }
  .svc-row .svc-body { grid-column: 2; }
  .spec-cards { grid-template-columns: 1fr; }
  .proj-layout { grid-template-columns: repeat(2, 1fr); }
  .proj-featured { grid-column: span 2; }
  .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-facts { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .hero-inner { padding-top: 56px; padding-bottom: 70px; }
  .hero-img-card { bottom: -24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .proj-layout { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .proj-featured { grid-column: span 1; grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }

  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--green-950);
    border-top: 1px solid rgba(246, 241, 231, 0.12);
    border-bottom: 1px solid rgba(246, 241, 231, 0.12);
    padding: 8px 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 26px; font-size: 1rem; border-bottom: none; }

  .header-tools .btn { display: none; }
  .brand-text small { display: none; }
}
