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

:root {
  --ink: #0e0e0e;
  --paper: #f5f2ed;
  --accent: #e8441a;
  --mid: #a89f94;
  --light: #e8e4de;
  --white: #fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ──────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(245,242,237,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 30px rgba(14,14,14,.08); }

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  padding: 10px 22px;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: 6px;
  font-family: 'Syne', sans-serif !important;
  font-size: 11px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: var(--paper);
  z-index: 190;
  padding: 40px 48px;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform (.3s) ease-in-out;
}
.mobile-menu.open { display: flex; transform: translateY(0); }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ──────────────────────────────────────────
   SHARED UTILITIES
────────────────────────────────────────── */
section { padding: 120px 80px; }

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 0 0 50px;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.02em;
  margin-bottom: 60px;
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Syne', sans-serif;
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(14,14,14,.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--light);
  border-radius: 100px;
  margin-bottom: 36px;
  animation: fadeUp .7s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}
.badge-text {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 36px;
  animation: fadeUp .7s .1s ease both;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  color: var(--mid);
}
.hero-title .accent { color: var(--accent); }

.hero-desc {
  font-size: 1.05rem;
  color: #6b6560;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 52px;
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, gap .25s;
}
.btn-primary:hover { background: var(--accent); gap: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s, gap .2s;
}
.btn-secondary:hover { color: var(--accent); border-color: var(--accent); gap: 12px; }

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 80px;
  display: flex;
  gap: 48px;
  animation: fadeUp .7s .4s ease both;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
}

.hero-scroll {
  position: absolute;
  bottom: 60px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  animation: fadeUp .7s .5s ease both;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--mid);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────
   PROCESS
────────────────────────────────────────── */
#process { background: var(--paper); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  padding: 40px 32px;
  border: 1px solid var(--light);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  cursor: default;
}
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s cubic-bezier(.76,0,.24,1);
  z-index: 0;
}
.process-card:hover::before { transform: scaleY(1); }
.process-card > * { position: relative; z-index: 1; }
.process-card:hover .pc-num,
.process-card:hover .pc-title,
.process-card:hover .pc-desc { color: rgba(255,255,255,.9); }
.process-card:hover .pc-num { color: var(--accent); }
.process-card:hover .pc-icon { background: rgba(255,255,255,.08); color: #fff; }

.pc-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 28px;
  transition: color .3s;
}
.pc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--light);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: background .3s, color .3s;
}
.pc-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color .3s;
}
.pc-desc {
  font-size: .87rem;
  line-height: 1.7;
  color: #6b6560;
  transition: color .3s;
}

/* ──────────────────────────────────────────
   SERVICES
────────────────────────────────────────── */
#services { background: var(--ink); }
#services .section-label { color: var(--accent); }
#services .section-label::after { background: var(--accent); }
#services .section-heading { color: #fff; }

.services-list { border-top: 1px solid rgba(255,255,255,.1); }

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  gap: 20px;
  cursor: default;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.76,0,.24,1);
  z-index: 0;
}
.service-item:hover::before { transform: scaleX(1); }
.service-item > * { position: relative; z-index: 1; }

.svc-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  width: 36px;
  flex-shrink: 0;
  transition: color .25s;
}
.svc-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  flex: 1;
  transition: color .25s;
}
.svc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.svc-tag {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  border-radius: 20px;
  transition: all .25s;
}
.service-item:hover .svc-tag { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.9); }
.svc-arrow {
  font-size: 1.3rem;
  color: rgba(255,255,255,.3);
  transition: color .25s, transform .25s;
}
.service-item:hover .svc-arrow { transform: rotate(-45deg); color: #fff; }

/* ──────────────────────────────────────────
   PACKAGES
────────────────────────────────────────── */
#packages { background: var(--paper); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.package-card {
  border: 1px solid var(--light);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(14,14,14,.1);
}
.package-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.pkg-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}
.package-card.featured .pkg-eyebrow { color: var(--accent); }

.pkg-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.pkg-price {
  margin-bottom: 28px;
}
.pkg-price strong {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.pkg-price span {
  font-size: .85rem;
  color: var(--mid);
}
.package-card.featured .pkg-price span { color: rgba(255,255,255,.4); }

.pkg-divider {
  height: 1px;
  background: var(--light);
  margin-bottom: 28px;
}
.package-card.featured .pkg-divider { background: rgba(255,255,255,.12); }

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.5;
  color: #6b6560;
}
.package-card.featured .pkg-features li { color: rgba(255,255,255,.7); }
.pkg-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--light);
  display: grid;
  place-items: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #444;
}
.package-card.featured .pkg-check {
  background: var(--accent);
  color: #fff;
}

.pkg-btn {
  display: block;
  text-align: center;
  padding: 15px 24px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s;
}
.pkg-btn-outline {
  border: 1px solid var(--light);
  background: transparent;
  color: var(--ink);
}
.pkg-btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.pkg-btn-filled {
  background: var(--accent);
  color: #fff;
}
.pkg-btn-filled:hover { background: #d63a14; }

.featured-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ──────────────────────────────────────────
   PACKAGE CALLOUT
────────────────────────────────────────── */
.pkg-callout {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 36px;
  border-radius: 14px;
  border: 1px solid var(--light);
  background: var(--white);
  flex-wrap: wrap;
}
.pkg-callout-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pkg-callout-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pkg-callout-text strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pkg-callout-text p {
  font-size: .84rem;
  color: #6b6560;
  line-height: 1.55;
  max-width: 560px;
}
.pkg-callout-text p a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.pkg-callout-text p a:hover { border-color: var(--accent); }
.pkg-callout-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(232,68,26,.08);
  color: var(--accent);
  border: 1px solid rgba(232,68,26,.2);
  flex-shrink: 0;
}


/* ──────────────────────────────────────────
    RETAINERS
   ───────────────────────────────────────── */
#retainers { background: var(--ink); }
#retainers .section-label { color: var(--accent); }
#retainers .section-label::after { background: var(--accent); }
#retainers .section-heading { color: #fff; }

.retainer-intro {
  color: rgba(255,255,255,.45);
  font-size: .98rem;
  line-height: 1.8;
  max-width: 540px;
  margin-top: -36px;
  margin-bottom: 56px;
}

.retainer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
}

.retainer-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.retainer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.retainer-card.featured {
  border-color: var(--accent);
  background: rgba(232,68,26,.06);
}
.retainer-card.featured:hover { border-color: var(--accent); }

.ret-badge {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.ret-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}
.retainer-card.featured .ret-eyebrow { color: var(--accent); }

.ret-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.ret-price {
  margin-bottom: 8px;
}
.ret-price strong {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
}
.ret-price span {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.ret-commitment {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
}
.retainer-card.featured .ret-commitment {
  border-color: rgba(232,68,26,.4);
  color: rgba(232,68,26,.8);
}

.ret-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.retainer-card.featured .ret-divider { background: rgba(232,68,26,.2); }

.ret-hours {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}
.ret-hours strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.ret-hours span { font-size: .82rem; color: rgba(255,255,255,.35); }

.ret-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.ret-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  line-height: 1.5;
  color: rgba(255,255,255,.55);
}
.ret-check {
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255,255,255,.5);
}
.retainer-card.featured .ret-check {
  background: var(--accent);
  color: #fff;
}

.ret-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .2s;
}
.ret-btn-ghost {
  border: 1px solid rgba(255,255,255,.15);
  background: transparent;
  color: rgba(255,255,255,.6);
}
.ret-btn-ghost:hover { border-color: rgba(255,255,255,.4); color: #fff; }
.ret-btn-filled {
  background: var(--accent);
  color: #fff;
}
.ret-btn-filled:hover { background: #d63a14; }

/* Bottom "how it works" strip */
.retainer-how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
}
.rhow-item {
  background: rgba(255,255,255,.03);
  padding: 32px 28px;
  transition: background .25s;
}
.rhow-item:hover { background: rgba(255,255,255,.06); }
.rhow-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
  display: block;
}
.rhow-title {
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.rhow-desc {
  font-size: .82rem;
  line-height: 1.65;
  color: rgba(255,255,255,.35);
}


/* ──────────────────────────────────────────
   RECENT WORK
────────────────────────────────────────── */
#work { background: var(--paper); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.work-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 240px;
}
.work-card:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 440px; }
.work-card:nth-child(2) { grid-column: span 5; }
.work-card:nth-child(3) { grid-column: span 5; }
.work-card:nth-child(4) { grid-column: span 4; }
.work-card:nth-child(5) { grid-column: span 8; }

.card-bg {
  position: absolute;
  inset: 0;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.work-card:hover .card-bg { transform: scale(1.05); }

.bg-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.bg-2 { background: linear-gradient(135deg, #2d1b69 0%, #6b35b5 100%); }
.bg-3 { background: linear-gradient(135deg, #1e3a2f 0%, #2d7a57 100%); }
.bg-4 { background: linear-gradient(135deg, #3d1a0f 0%, #e8441a 100%); }
.bg-5 { background: linear-gradient(135deg, #1c1c1c 0%, #3d3d3d 100%); }

.card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  opacity: .7;
  transition: opacity .3s;
}
.work-card:hover .card-overlay { opacity: 1; }

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.card-tag {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.card-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.work-card:hover .card-link { color: #fff; gap: 10px; }
.card-year {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  color: rgba(255,255,255,.3);
  font-family: 'Syne', sans-serif;
  z-index: 2;
}

/* ──────────────────────────────────────────
   CONTACT
────────────────────────────────────────── */
#contact { background: var(--ink); }
#contact .section-label { color: var(--accent); }
#contact .section-label::after { background: var(--accent); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 20px;
}
.contact-left p {
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 52px;
  font-size: .95rem;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ci-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
  color: #fff;
}
.ci-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  display: block;
  margin-bottom: 2px;
}
.ci-val {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* form */
.contact-form { display: flex; flex-direction: column; }

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

.field { margin-bottom: 4px; }
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
  margin-top: 22px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
  appearance: none;
}
.field select option { background: #1a1a1a; color: #fff; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.25); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.09);
}
.field textarea { min-height: 130px; }

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.submit-note {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, gap .25s;
}
.btn-submit:hover { background: #d63a14; gap: 16px; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -.02em;
}
.footer-logo span { color: var(--accent); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  section { padding: 100px 48px; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid .package-card:last-child { grid-column: span 2; }
  .contact-wrap { gap: 60px; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 80px 24px; }

  #hero { padding: 100px 24px 80px; }
  .hero-stats { display: none; }
  .hero-scroll { display: none; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .work-card:nth-child(n) { grid-column: span 12; min-height: 220px; }
  .work-card:nth-child(1) { min-height: 320px; }

  .packages-grid { grid-template-columns: 1fr; }
  .packages-grid .package-card:last-child { grid-column: span 1; }

  .retainer-grid { grid-template-columns: 1fr; }
.retainer-how { grid-template-columns: 1fr 1fr; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}
