/* ============================================================
   KAN LAILEY PHOTOGRAPHY — SHARED STYLESHEET
   Clean · Minimal · Premium
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --black:     #0A0A0A;
  --dark:      #1A1A1A;
  --gold:      #B8975A;
  --gold-lt:   #D4BC8A;
  --body:      #444444;
  --mid:       #666666;
  --light:     #999999;
  --rule:      #E0DDD8;
  --bg:        #FAFAF8;
  --white:     #FFFFFF;

  --nav-h:     72px;
  --max-w:     1240px;
  --pad-x:     clamp(24px, 5vw, 80px);
  --section-y: clamp(72px, 10vw, 120px);

  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ── Typography Scale ──────────────────────────────────────── */
.t-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-hero {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
}
.t-h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
}
.t-h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
}
.t-h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
}
.t-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--mid);
}
.t-body { font-size: 1rem; line-height: 1.7; color: var(--body); }
.t-small { font-size: 0.875rem; color: var(--light); }
.t-gold { color: var(--gold); }
.t-black { color: var(--black); }
.t-center { text-align: center; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--dark); }
.section--black { background: var(--black); }
.section--cream { background: #F5F2EC; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.nav--solid {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav.nav--light-solid {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}
.nav__logo-sub {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav__logo-name { color: var(--white); }
.nav__logo-sub { color: var(--gold-lt); }
.nav--light-mode .nav__logo-name { color: var(--black); }
.nav--light-mode .nav__logo-sub { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav--light-mode .nav__links a { color: var(--mid); }
.nav--light-mode .nav__links a:hover { color: var(--black); }

.nav__cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
}
.nav__cta:hover { background: var(--gold-lt); opacity: 1; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav--light-mode .nav__burger span { background: var(--black); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .nav__cta {
  font-size: 0.85rem;
  padding: 14px 32px;
  color: var(--black) !important;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover { background: var(--gold-lt); }
.btn--outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn--outline-dark {
  border: 1px solid rgba(0,0,0,0.2);
  color: var(--black);
}
.btn--outline-dark:hover { border-color: var(--black); background: rgba(0,0,0,0.04); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Gold Rule ─────────────────────────────────────────────── */
.gold-rule {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ── Section Header ────────────────────────────────────────── */
.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.section-header .t-eyebrow { margin-bottom: 12px; }
.section-header .t-h1,
.section-header .t-h2 { max-width: 640px; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.1) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero__content .t-eyebrow { margin-bottom: 20px; }
.hero__content .t-hero { color: var(--white); margin-bottom: 28px; }
.hero__content .t-lead { color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 44px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px; right: var(--pad-x);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll::before {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: var(--gold);
}

/* ── Image placeholder ─────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

/* ── Service Cards ─────────────────────────────────────────── */
.service-card {
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: pointer;
}
.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.service-card__num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card__title { margin-bottom: 12px; }
.service-card__body { font-size: 0.9rem; line-height: 1.65; color: var(--mid); margin-bottom: 24px; }
.service-card__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 14px; }
.service-card__link::after { content: '→'; }

/* ── Portfolio Grid ────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 3px;
}
.portfolio-grid--hero {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 400px 300px;
}
.portfolio-grid--hero .portfolio-item:first-child {
  grid-row: 1 / 3;
}
.portfolio-item {
  overflow: hidden;
  position: relative;
  background: var(--dark);
  cursor: pointer;
}
.portfolio-item img,
.portfolio-item .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.3s;
}
.portfolio-item:hover img,
.portfolio-item:hover .img-placeholder { transform: scale(1.04); }
.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.3s;
}
.portfolio-item:hover .portfolio-item__overlay { background: rgba(10,10,10,0.45); }
.portfolio-item__label {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.portfolio-item:hover .portfolio-item__label { opacity: 1; transform: translateY(0); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial {
  padding: 40px 36px;
  border-left: 2px solid var(--gold);
  background: var(--white);
}
.testimonial__quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial__body { font-size: 0.95rem; line-height: 1.75; color: var(--mid); font-style: italic; margin-bottom: 20px; }
.testimonial__author { font-size: 0.8rem; font-weight: 600; color: var(--black); }
.testimonial__role { font-size: 0.75rem; color: var(--light); margin-top: 2px; }

/* ── Pricing Cards ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  position: relative;
}
.pricing-card--featured {
  border-color: var(--gold);
  background: var(--black);
  color: var(--white);
}
.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__desc { color: var(--white); }
.pricing-card--featured .pricing-card__item { color: rgba(255,255,255,0.7); }
.pricing-card--featured .pricing-card__item::before { background: var(--gold); }
.pricing-badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
}
.pricing-card__name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--light);
  letter-spacing: 0;
}
.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  line-height: 1.55;
}
.pricing-card--featured .pricing-card__desc {
  border-bottom-color: rgba(255,255,255,0.1);
}
.pricing-card__items { margin-bottom: 32px; }
.pricing-card__item {
  font-size: 0.85rem;
  color: var(--body);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.pricing-card__item::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 1px;
  background: var(--gold);
}

/* ── Process Steps ─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: process;
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  position: relative;
  counter-increment: process;
}
.process-step:last-child { border-right: none; }
.process-step::before {
  content: '0' counter(process);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.process-step__title { margin-bottom: 10px; }
.process-step__body { font-size: 0.88rem; color: var(--mid); line-height: 1.65; }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  display: flex;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat-item {
  flex: 1;
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
}

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: var(--black);
  padding: clamp(64px, 8vw, 100px) 0;
  text-align: center;
}
.cta-band .t-h1 { color: var(--white); max-width: 700px; margin: 0 auto 16px; }
.cta-band .t-lead { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 44px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.cta-band__wa:hover { color: var(--white); }
.cta-band__wa svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Logo Strip ────────────────────────────────────────────── */
.logo-strip {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}
.logo-strip__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  white-space: nowrap;
  padding-right: 32px;
  border-right: 1px solid var(--rule);
  margin-right: 16px;
}
.logo-strip__items {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.logo-strip__item {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--light);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── About Split ───────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.about-split__img {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.about-split__img img,
.about-split__img .img-placeholder { width: 100%; height: 100%; object-fit: cover; }
.about-split__text {
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split__text .t-eyebrow { margin-bottom: 16px; }
.about-split__text .t-h2 { margin-bottom: 24px; }
.about-split__text p { color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
.about-split__text p:last-of-type { margin-bottom: 32px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-item__q:hover { color: var(--gold); }
.faq-item__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::before { width: 12px; height: 1.5px; }
.faq-item__icon::after { width: 1.5px; height: 12px; transition: opacity 0.3s; }
.faq-item.open .faq-item__icon::after { opacity: 0; }
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-item__a { max-height: 400px; }
.faq-item__a p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  padding-bottom: 22px;
}

/* ── Contact Form ──────────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--black);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .nav__logo-name { color: var(--white); margin-bottom: 16px; }
.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--gold); }
.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rule); }
  .process-step:last-child { border-bottom: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__img { min-height: 320px; }
  .portfolio-grid--hero { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .portfolio-grid--hero .portfolio-item:first-child { grid-row: auto; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .portfolio-grid, .portfolio-grid--hero { grid-template-columns: 1fr; }
  .portfolio-grid--hero .portfolio-item { min-height: 260px; }
  .portfolio-grid .portfolio-item { min-height: 240px; }
}
