/* ─── BODDA FONT ─────────────────────────────────────────── */
@font-face {
  font-family: 'Bodda';
  src: url('../fonts/Bodda Creative Sans/Bodda-Thin.ttf') format('truetype');
  font-weight: 100; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bodda';
  src: url('../fonts/Bodda Creative Sans/Bodda-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bodda';
  src: url('../fonts/Bodda Creative Sans/Bodda-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bodda';
  src: url('../fonts/Bodda Creative Sans/Bodda-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Bodda';
  src: url('../fonts/Bodda Creative Sans/Bodda-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bodda';
  src: url('../fonts/Bodda Creative Sans/Bodda-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bodda';
  src: url('../fonts/Bodda Creative Sans/Bodda-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bodda';
  src: url('../fonts/Bodda Creative Sans/Bodda-ExtraBold.ttf') format('truetype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bodda';
  src: url('../fonts/Bodda Creative Sans/Bodda-Black.ttf') format('truetype');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ============================================================
   NDWELA MEDIA UGANDA — The Field Journal
   Pure CSS · No frameworks · 3G-optimised
   ============================================================ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --amber:       #E7A732;
  --amber-dark:  #c98e24;
  --red:         #9F3121;
  --teal:        #85C7B4;

  --ink:         #1A1614;
  --body:        #5C5650;
  --gray:        #8A8278;
  --gray-lt:     #C5BFB9;
  --surface:     #F5F1EC;
  --border:      #E8E4DF;
  --white:       #FAFAF9;

  --dark-border: #2A2520;
  --dark-gray:   #6B6560;
  --dark-muted:  #4A4540;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  --container:   1240px;
  --pad-x:       clamp(24px, 5vw, 52px);
  --section-y:   clamp(72px, 10vw, 120px);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--white);
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
p { overflow-wrap: break-word; }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(44px, 7vw, 92px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }

h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--ink);
}

h1 em, h2 em, h3 em { font-style: italic; color: var(--amber); }

p {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.9;
  color: var(--body);
}

/* ─── EYEBROW ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--amber);
  flex-shrink: 0;
}

.eyebrow--light       { color: rgba(250,249,249,0.65); }
.eyebrow--light::before { background: var(--amber); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--section-y); }

.section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-radius: 0;
  transition:
    transform 0.25s var(--ease-out-expo),
    opacity 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.88);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); opacity: 1; }

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); opacity: 1; }

/* ─── ARROW LINKS ────────────────────────────────────────── */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
  transition: color 0.2s, gap 0.2s;
}

.arrow-link:hover { color: var(--amber); gap: 14px; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 16px 52px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nav.scrolled {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 1px 28px rgba(26,22,20,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-wrap {
  position: relative;
  height: 56px;
  width: 160px;
}
.nav-logo-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 56px;
  width: auto;
  transition: opacity 0.35s ease;
}
.nav-logo-light {
  opacity: 1;
}
.nav-logo-dark {
  opacity: 0;
}
.nav.scrolled .nav-logo-light {
  opacity: 0;
}
.nav.scrolled .nav-logo-dark {
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(250,250,249,0.95);
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(250,250,249,0.95);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover { color: #E7A732; }

nav.scrolled .nav-links a { color: #1A1614; }
nav.scrolled .nav-links a:hover { color: #E7A732; }

.nav.scrolled .nav__link { color: var(--ink); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber);
  transition: width 0.28s ease;
}

.nav__link:hover { color: var(--amber); }
.nav__link:hover::after { width: 100%; }
.nav.scrolled .nav__link:hover { color: var(--amber); }

.nav__cta { display: none; }

.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 11px 24px;
  line-height: 1;
  white-space: nowrap;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav__cta-btn:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.9);
  transform-origin: center;
  transition: transform 0.32s ease, opacity 0.22s ease, background 0.3s ease;
}

.nav.scrolled .nav__hamburger span { background: var(--ink); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.nav__drawer.open { transform: translateX(0); }

.nav__drawer .nav__link {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
  transition: color 0.2s;
}

.nav__drawer .nav__link::after { display: none; }
.nav__drawer .nav__link:hover { color: var(--amber); }
.nav__drawer-cta { margin-top: 12px; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink); /* backdrop while the first slide loads / if none load */
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease;
  will-change: transform, opacity;
}

.hero__bg.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__bg.is-animating {
  animation: kenBurns 6s ease-in-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(17,16,16,0.95) 0%,
    rgba(17,16,16,0.82) 30%,
    rgba(17,16,16,0.44) 60%,
    rgba(17,16,16,0.08) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(60px, 10vh, 100px);
}

.hero__text {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__h1 { color: var(--white); }

.hero__sub {
  color: rgba(250,249,249,0.74);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  line-height: 1.85;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.hero__scroll-cue {
  position: absolute;
  bottom: clamp(20px, 4vh, 36px);
  right: var(--pad-x);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.65;
  cursor: pointer;
  animation: scrollBounce 2.4s ease-in-out infinite;
  transition: opacity 0.2s;
}

.hero__scroll-cue:hover { opacity: 1; }

.hero__scroll-cue svg {
  width: 18px; height: 18px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── CLIENTS ────────────────────────────────────────────── */
.clients {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 28px;
}

.clients__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.clients__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  flex-shrink: 0;
  white-space: nowrap;
}

.clients__names {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.clients__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  padding: 2px 16px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}

.clients__name:first-child { padding-left: 0; }

.clients__name:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 10px;
  background: var(--border);
}

.clients__name:hover { color: var(--ink); }

/* ─── CLIENTS LOGO GRID ──────────────────────────────────── */
.clients-section {
  background: var(--surface);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-section__header {
  text-align: center;
  margin-bottom: 32px;
}

.clients-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.clients-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  text-align: center;
  max-width: none;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
  max-width: 1000px;
  margin: 0 auto;
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s ease;
}

.client-logo:hover { filter: grayscale(0%) opacity(1); }


/* ─── ABOUT ──────────────────────────────────────────────── */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.about__body { display: flex; flex-direction: column; gap: 24px; }
.about__body p { max-width: 56ch; }

.about__pull { position: relative; }

.about__pull::before {
  content: '';
  display: none;
  width: 2px;
  position: absolute;
  top: 0; bottom: 0; left: 0;
  background: var(--border);
}

.about__pull-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 600;
  font-style: italic;
  color: var(--amber);
  line-height: 1.5;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services { background: var(--white); }

.services__intro { max-width: 52ch; margin-bottom: 48px; }

.services__list { display: flex; flex-direction: column; }

.service-block {
  border-top: 1px solid var(--border);
  padding-block: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-block:last-child { border-bottom: 1px solid var(--border); }

.service-block__top {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.service-block__number {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
}

.service-block__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.service-block__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--body);
  max-width: 58ch;
}

.service-block__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.service-block__tag-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-right: 4px;
  flex-shrink: 0;
}

.service-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  padding: 4px 10px;
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.service-tag:hover { color: var(--ink); border-color: var(--gray-lt); }

.services__footer { margin-top: 48px; }

/* ─── FEATURED WORK ──────────────────────────────────────── */
.work { background: var(--surface); }

.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.work-card { display: flex; flex-direction: column; }

.work-card__media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  flex-shrink: 0;
}

.work-card--large .work-card__media { aspect-ratio: 4 / 3; }
.work-card--small .work-card__media { aspect-ratio: 16 / 10; }

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.86);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.work-card:hover .work-card__media img {
  transform: scale(1.03);
  filter: brightness(1);
}

.work-card__caption {
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.work-card__type {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
}

.work-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.work-card__client {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}

.work__footer { margin-top: 48px; }

/* ─── DIFFERENCE ─────────────────────────────────────────── */
.difference { background: var(--surface); }

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

.difference-point {
  border-top: 1px solid var(--border);
  padding-block: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.difference-point:last-child { border-bottom: 1px solid var(--border); }

.difference-point__top {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.difference-point__number {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--amber);
  flex-shrink: 0;
}

.difference-point__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.difference-point__body {
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.85;
  max-width: 40ch;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.testimonial { display: flex; flex-direction: column; }

.testimonial__mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.75;
  color: var(--amber);
  opacity: 0.22;
  user-select: none;
  pointer-events: none;
  display: block;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__body {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial__rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
  margin-bottom: 20px;
}

.testimonial__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: block;
}

.testimonial__role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  display: block;
  margin-top: 3px;
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--red);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  right: -180px; top: -240px;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  left: -100px; bottom: -160px;
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cta-section__text { display: flex; flex-direction: column; gap: 16px; }

.cta-section__inner h2 {
  color: var(--white);
  max-width: 20ch;
  line-height: 1.1;
}

.cta-section__sub {
  color: rgba(250,249,249,0.76);
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 50ch;
  line-height: 1.85;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  flex-shrink: 0;
}

.cta-section__contacts { display: flex; flex-direction: column; gap: 8px; }

.cta-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,249,249,0.7);
}

.cta-contact svg {
  width: 14px; height: 14px;
  stroke: rgba(250,249,249,0.45);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.cta-contact a { transition: color 0.2s; }
.cta-contact a:hover { color: var(--white); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding-block: clamp(80px, 10vw, 120px);
  border-top: 1px solid #2A2520;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 300px;
}

.footer__brand img {
  height: 64px;
  width: auto;
  margin-bottom: 24px;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--dark-gray);
  line-height: 1.75;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--dark-gray);
  transition: color 0.22s, border-color 0.22s, background 0.22s;
}

.footer__social:hover {
  color: var(--amber);
  border-color: var(--amber);
  background: rgba(231,167,50,0.08);
}

.footer__social svg {
  width: 18px; height: 18px;
  fill: currentColor;
  display: block;
}

.footer__col-head {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250,249,249,0.38);
  margin-bottom: 20px;
  display: block;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark-gray);
  transition: color 0.2s;
  line-height: 1;
}

.footer__link:hover { color: var(--amber); }

.footer__contact-line {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark-gray);
  line-height: 1.8;
  display: block;
}

a.footer__contact-line:hover { color: var(--amber); }

.footer__address {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark-muted);
  line-height: 1.7;
  margin-top: 8px;
}

.footer__bottom {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 24px;
  border-top: 1px solid #2A2520;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--dark-muted);
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

footer {
  padding: 72px 0 32px;
  background: #1A1614;
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease-out-expo),
    transform 0.75s var(--ease-out-expo);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.75s var(--ease-out-expo),
    transform 0.75s var(--ease-out-expo);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.75s var(--ease-out-expo),
    transform 0.75s var(--ease-out-expo);
}

.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── RESPONSIVE — 640px ─────────────────────────────────── */
@media (min-width: 640px) {
  .clients__inner { flex-direction: row; align-items: center; gap: 32px; }
}

/* ─── RESPONSIVE — 768px ─────────────────────────────────── */
@media (min-width: 768px) {
  .nav__links    { display: flex; }
  .nav__cta      { display: block; }
  .nav__hamburger { display: none; }

  .about__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .about__pull { padding-left: 40px; }
  .about__pull::before { display: block; }

  .difference__grid { grid-template-columns: 1fr 1fr; }
  .difference-point { padding-inline: 48px; }
  .difference-point:nth-child(odd)  { padding-left: 0; border-right: 1px solid var(--border); }
  .difference-point:nth-child(even) { padding-right: 0; }
  .difference-point:nth-child(3),
  .difference-point:nth-child(4)    { border-bottom: 1px solid var(--border); }

  .testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }

  .cta-section__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 56px;
  }

  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ─── RESPONSIVE — 1024px ────────────────────────────────── */
@media (min-width: 1024px) {
  /* Work — asymmetric grid */
  .work__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
    align-items: start;
  }

  .work-card--large {
    grid-row: 1 / 3;
    grid-column: 1;
    height: 100%;
  }

  .work-card--large .work-card__media {
    aspect-ratio: unset;
    height: 520px;
  }

  .work-card--small:nth-child(2) { grid-row: 1; grid-column: 2; }
  .work-card--small:nth-child(3) { grid-row: 2; grid-column: 2; }
  .work-card--small .work-card__media { aspect-ratio: 4 / 3; }

  /* Footer — 4 col */
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }

  /* Services — two-col editorial on desktop */
  .service-block {
    display: grid;
    grid-template-columns: 240px 1fr;
    grid-template-rows: auto auto;
    column-gap: 56px;
    row-gap: 0;
    align-items: start;
  }

  .service-block__top   { grid-column: 1; grid-row: 1 / 3; flex-direction: column; gap: 10px; align-items: flex-start; }
  .service-block__body  { grid-column: 2; grid-row: 1; }
  .service-block__tags  { grid-column: 2; grid-row: 2; margin-top: 18px; }
}

/* ─── RESPONSIVE — 1280px ────────────────────────────────── */
@media (min-width: 1280px) {
  .work-card--large .work-card__media { height: 600px; }
}

/* ─── PRINT ──────────────────────────────────────────────── */
@media print {
  .nav, .hero__scroll-cue, .nav__drawer { display: none; }
  .hero { height: auto; min-height: 0; }
  .hero__bg-wrap { display: none; }
}
