/* =============================================
   STUDIO PARIJAT — styles.css
   Editorial / FMDS-inspired — Olive Palette
   ============================================= */

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

:root {
  /* Olive green palette (from logo) */
  --olive:       #6b7c42;
  --olive-dk:    #556033;
  --olive-md:    #7a8c5a;
  --olive-lt:    #8a9e62;
  --sage:        #c5cb98;
  --sage-lt:     #dde2c4;
  --sage-bg:     #eaecdd;
  --bg:          #f5f6f0;
  --ink:         #1c2410;
  --ink-mid:     #3a4a22;
  --ink-soft:    #5a6b3a;
  --line:        #d2d8b8;
  --white:       #ffffff;

  --sans:     'DM Sans', system-ui, sans-serif;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --mw:       1280px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
em { font-style: italic; font-family: var(--serif); }

/* ---- SHARED ---- */
.label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.8rem;
}
.center { text-align: center; }

h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
h2 em { color: var(--olive); font-weight: 400; }

h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-dk);
  border-bottom: 1px solid var(--olive-dk);
  padding-bottom: 0.2rem;
  transition: gap 0.25s ease, color 0.25s ease;
}
.link-arrow:hover { gap: 0.9rem; color: var(--olive); border-color: var(--olive); }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3rem;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.stuck {
  background: rgba(245, 246, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 var(--line);
}
/* Nav turns white text when on the dark hero, dark text once stuck */
.nav:not(.stuck) .nav__logo-studio { color: rgba(255,255,255,0.7); }
.nav:not(.stuck) .nav__logo-name   { color: var(--sage-lt); }
.nav:not(.stuck) .nav__links a     { color: rgba(255,255,255,0.82); }
.nav:not(.stuck) .nav__links a:hover { color: var(--white); }
.nav:not(.stuck) .nav__cta {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.nav:not(.stuck) .nav__cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.nav:not(.stuck) .nav__burger span { background: var(--white); }

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  text-decoration: none;
}
.nav__logo-studio {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-style: italic;
  transition: color 0.4s;
}
.nav__logo-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--olive);
  transition: color 0.4s;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s ease;
}
.nav__links a:hover,
.nav__links a.active-link { color: var(--olive); }

/* GET IN TOUCH button in nav */
.nav__cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--olive-dk);
  border: 1px solid var(--olive-dk);
  padding: 0.55rem 1.35rem;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.nav__cta:hover { background: var(--olive); border-color: var(--olive); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: 0.3s ease;
  border-radius: 2px;
}

/* ---- DRAWER ---- */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.drawer.open { transform: translateX(0); }

.drawer__close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.drawer__close:hover { color: var(--olive); }

.drawer__links {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.drawer__links a {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  transition: color 0.2s ease;
}
.drawer__links a:hover { color: var(--olive); }

.drawer__tagline {
  margin-top: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.6;
}

.drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 28, 10, 0.4);
  backdrop-filter: blur(2px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer__backdrop.show { opacity: 1; pointer-events: all; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  background:
    radial-gradient(ellipse at 60% 40%, #6b7c42 0%, #4a5c2e 40%, #2e3a1a 75%, #1c2410 100%);
  overflow: hidden;
}
/* subtle warm overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(197,203,152,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero__label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}
.hero__title em {
  font-style: normal;
  color: var(--sage-lt);
}

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

.hero__btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hero__btn--fill {
  background: var(--olive-dk);
  color: var(--white);
  border: 1px solid var(--olive-dk);
}
.hero__btn--fill:hover { background: var(--olive); border-color: var(--olive); }
.hero__btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.hero__btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}
.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out 1.5s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee {
  overflow: hidden;
  background: var(--olive);
  padding: 0.8rem 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
}
.marquee__track span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 0.3rem;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.about__img-col { overflow: hidden; }
.about__img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}
.about__img svg { width: 100%; height: 100%; }

.about__text {
  padding: 6rem 6rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__text p { margin-bottom: 1rem; }
.about__text h2 { margin-bottom: 1.6rem; }

/* =============================================
   WORK
   ============================================= */
.work { padding: 6rem 0; }

.work__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 4rem 2.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.work__head-left h2 { margin-bottom: 0; }

.work__filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.filt {
  padding: 0.45rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  transition: 0.2s ease;
}
.filt:hover { border-color: var(--olive); color: var(--olive); }
.filt.active { background: var(--olive); border-color: var(--olive); color: var(--white); }

/* ---- GRID ---- */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 460px;
}

.wcard--wide {
  grid-column: span 2;
}

.wcard {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.wcard.hidden { display: none; }

.wcard__img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}
.wcard__img svg {
  width: 100%; height: 100%;
}
.wcard:hover .wcard__img { transform: scale(1.045); }

/* Dark gradient overlay at bottom */
.wcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,28,10,0.72) 0%, rgba(20,28,10,0.1) 50%, transparent 100%);
  transition: opacity 0.4s ease;
}

.wcard__meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}
.wcard:hover .wcard__meta { transform: translateY(-3.5rem); }

.wcard__tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}
.wcard__meta h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--white);
  margin: 0;
}
.wcard__meta p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

.wcard__over {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.2rem 2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.wcard:hover .wcard__over { opacity: 1; }
.wcard__over span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-lt);
  border-bottom: 1px solid var(--sage-lt);
  padding-bottom: 0.2rem;
}

/* =============================================
   MODAL
   ============================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(20, 28, 10, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal.open { opacity: 1; pointer-events: all; }

.modal__box {
  background: var(--bg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.modal.open .modal__box { transform: none; }

.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  z-index: 1;
  transition: color 0.2s;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,246,240,0.9);
}
.modal__close:hover { color: var(--olive); }

.modal__img {
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.modal__img svg { width: 100%; height: 100%; }

.modal__body { padding: 2.2rem 2.5rem 2.5rem; }
.modal__body h2 {
  font-size: 2.2rem;
  margin: 0.5rem 0 1rem;
}
.modal__meta {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.modal__meta li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-left: 1rem;
  position: relative;
}
.modal__meta li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--olive);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--sage-bg);
  padding: 7rem 6rem;
  gap: 5rem;
  align-items: start;
}
.services__left p:not(.label) {
  margin-top: 1.2rem;
  max-width: 300px;
}

.services__list {
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.8rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.2s;
}
.svc:first-child { border-top: 1px solid var(--line); }

.svc__n {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--olive);
  font-weight: 300;
  padding-top: 0.1rem;
}
.svc__body h3 { margin-bottom: 0.25rem; }
.svc__body p { font-size: 0.88rem; }

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 7rem 6rem;
  background: var(--olive-dk);
}
.process .label { color: rgba(255,255,255,0.5); }
.process h2 { color: var(--white); margin-bottom: 3.5rem; }

.process__row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.proc__step {
  flex: 1;
  padding: 0 2rem;
  text-align: center;
}
.proc__n {
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proc__step h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.proc__step p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

.proc__line {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-top: 2.2rem;
  position: relative;
}
.proc__line::after {
  content: '';
  position: absolute;
  right: -4px; top: -4px;
  width: 8px; height: 8px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  transform: rotate(45deg);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi {
  padding: 7rem 6rem;
  text-align: center;
  background: var(--bg);
}

.testi__wrap { position: relative; min-height: 10rem; margin-top: 1rem; }

.testi__q {
  display: none;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.testi__q.active {
  display: flex;
  opacity: 1;
}

.testi__q p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}
.testi__q p::before { content: '\201C'; }
.testi__q p::after  { content: '\201D'; }

.testi__q footer {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.testi__q footer strong { color: var(--olive); font-weight: 500; }

.testi__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.tdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.25s, width 0.25s;
}
.tdot.active { background: var(--olive); width: 20px; border-radius: 3px; }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  padding: 7rem 6rem;
  background: var(--sage-bg);
  align-items: start;
}

.contact__left h2 { margin-bottom: 2.2rem; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.contact__info li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ci__l {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}
.contact__info span:last-child {
  font-size: 0.95rem;
  color: var(--ink-mid);
}
.contact__soc {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact__soc a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.contact__soc a svg { flex-shrink: 0; }
.contact__soc a:hover {
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

/* ---- FORM ---- */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.cf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cf__field--full { grid-column: 1 / -1; }

.cf__field label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 500;
}
.cf__field label span { color: var(--olive); }

.cf__field input,
.cf__field select,
.cf__field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.cf__field input::placeholder,
.cf__field textarea::placeholder { color: #aab890; }
.cf__field input:focus,
.cf__field select:focus,
.cf__field textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107,124,66,0.12);
}
.cf__field textarea { resize: vertical; min-height: 130px; }
.cf__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8c5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.cf__submit {
  align-self: flex-start;
  padding: 0.9rem 2.4rem;
  background: var(--olive);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background 0.25s ease;
}
.cf__submit:hover { background: var(--olive-dk); }

.cf__ok {
  display: none;
  padding: 0.8rem 1rem;
  background: rgba(107,124,66,0.1);
  border-left: 3px solid var(--olive);
  font-size: 0.88rem;
  color: var(--ink-mid);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 4rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.05rem;
  text-decoration: none;
}
.footer__brand::before {
  content: 'STUDIO';
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
}
.footer p {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer__links a:hover {
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll-reveal */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.sr.in {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .about { grid-template-columns: 1fr; }
  .about__img { min-height: 460px; }
  .about__text { padding: 4rem 2.5rem; }
  .services { grid-template-columns: 1fr; padding: 5rem 2.5rem; gap: 2.5rem; }
  .services__left p:not(.label) { max-width: none; }
  .contact { grid-template-columns: 1fr; padding: 5rem 2.5rem; gap: 3rem; }
  .work__grid { grid-template-columns: 1fr 1fr; }
  .wcard--wide { grid-column: 1 / -1; }
  .process { padding: 5rem 2.5rem; }
  .testi { padding: 5rem 2.5rem; }
  .work__head { padding: 0 2.5rem 2rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.stuck { padding: 0.9rem 1.5rem; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__btns { flex-direction: column; align-items: center; gap: 0.85rem; }
  .hero__btn { text-align: center; min-width: 200px; }

  .work__grid { grid-template-columns: 1fr; }
  .wcard--wide { grid-column: 1; }
  .work__head { flex-direction: column; align-items: flex-start; padding: 0 1.5rem 2rem; }

  .process__row { flex-wrap: wrap; gap: 2rem; }
  .proc__line { display: none; }
  .proc__step { min-width: 45%; }

  .cf__row { grid-template-columns: 1fr; }
  .footer { padding: 1.6rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .modal__meta { grid-template-columns: 1fr; }
  .services { padding: 4rem 1.5rem; }
  .contact { padding: 4rem 1.5rem; }
  .testi { padding: 4rem 1.5rem; }
  .process { padding: 4rem 1.5rem; }
  .about__text { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero { padding: 6rem 1.5rem 4rem; }
  .work__grid { grid-auto-rows: 320px; }
  .proc__step { min-width: 100%; }
}
