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

:root {
  --bg:        #0a0a0a;
  --bg-elev:   #111110;
  --ink:       #f2f0ea;
  --ink-dim:   #8a8681;
  --line:      rgba(242, 240, 234, 0.08);
  --accent:    #ff5c28;
  --accent-2:  #ffb347;
  --serif:     'Instrument Serif', Georgia, serif;
  --sans:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) { body { cursor: auto; } .cursor, .cursor-dot { display: none; } }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

em { font-family: var(--serif); font-style: italic; font-weight: 400; }

::selection { background: var(--accent); color: var(--bg); }

/* ─────────────────────────────────────────────
   GRAIN
   ───────────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-5%,-10%); }
  30% { transform: translate(3%,-15%); }
  50% { transform: translate(12%,9%); }
  70% { transform: translate(9%,4%); }
  90% { transform: translate(-1%,7%); }
}

/* ─────────────────────────────────────────────
   CURSOR
   ───────────────────────────────────────────── */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
}
.cursor {
  width: 34px; height: 34px;
  border: 1px solid rgba(242,240,234,0.35);
  transition: width .35s var(--ease), height .35s var(--ease),
              background .35s var(--ease), border-color .35s var(--ease);
  transform: translate(-50%,-50%);
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--ink);
  transform: translate(-50%,-50%);
}
.cursor.is-hover {
  width: 56px; height: 56px;
  background: rgba(242,240,234,0.08);
  border-color: rgba(242,240,234,0.6);
}
.cursor.is-view {
  width: 88px; height: 88px;
  background: var(--accent);
  border-color: transparent;
}
.cursor.is-view::after {
  content: "View";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--bg);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding .4s var(--ease), background .4s var(--ease),
              backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.nav__logo em { color: var(--accent); font-style: italic; }
.nav__logo-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--accent);
}
.nav__links {
  display: flex; gap: 36px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-dim);
}
.nav__links a {
  position: relative;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute;
  left: 0; bottom: -4px; width: 0; height: 1px;
  background: var(--ink);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; background: none; border: 0; cursor: none; }

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: none;
  transition: transform .35s var(--ease), background .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--large { padding: 20px 32px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.hero__meta { margin-bottom: 40px; }
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}
.pill__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 11vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.hero__title .reveal {
  display: block;
  overflow: hidden;
}
.hero__title .reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.hero__title.is-visible .reveal > span { transform: translateY(0); }
.hero__title .reveal:nth-child(2) > span { transition-delay: 0.08s; }
.hero__title .reveal:nth-child(3) > span { transition-delay: 0.16s; }
.hero__title em { color: var(--accent); }

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  margin-top: 60px;
}
.hero__lede {
  max-width: 460px;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.6;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  right: 40px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  writing-mode: vertical-rl;
}
.hero__scroll svg { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  margin-top: 80px;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: -0.02em;
  color: var(--ink-dim);
}
.marquee__track .dot { color: var(--accent); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   SECTIONS — shared
   ───────────────────────────────────────────── */
section { padding: 140px 0; }
section > * { max-width: 1440px; margin-left: auto; margin-right: auto; padding-left: 40px; padding-right: 40px; }

.section-head { margin-bottom: 80px; }
.section-head__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.section-head__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

/* ─────────────────────────────────────────────
   STATEMENT
   ───────────────────────────────────────────── */
.statement {
  border-top: 1px solid var(--line);
  padding-top: 140px;
  padding-bottom: 140px;
}
.statement__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 40px;
}
.statement__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 1200px;
}
.statement__text .reveal {
  display: block;
  overflow: hidden;
}
.statement__text .reveal > * { display: inline-block; }
.statement__text .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.statement__text.is-visible .reveal { opacity: 1; transform: translateY(0); }
.statement__text.is-visible .reveal:nth-child(2) { transition-delay: 0.1s; }
.statement__text.is-visible .reveal:nth-child(3) { transition-delay: 0.2s; }
.statement__text.is-visible .reveal:nth-child(4) { transition-delay: 0.3s; }
.statement__text em { color: var(--accent); }

/* ─────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────── */
.services__list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.service {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 40px;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding .5s var(--ease);
}
.service::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(255,92,40,0.08), transparent);
  transition: width .6s var(--ease);
  pointer-events: none;
}
.service:hover::before { width: 100%; }
.service:hover { padding-left: 30px; }
.service__num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-dim);
}
.service__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.service__desc {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.5;
}
.service__arrow {
  font-size: 22px;
  color: var(--ink-dim);
  transition: transform .4s var(--ease), color .4s var(--ease);
}
.service:hover .service__arrow {
  transform: translateX(8px);
  color: var(--accent);
}

/* ─────────────────────────────────────────────
   WORK
   ───────────────────────────────────────────── */
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 56px 48px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 340px;
  overflow: hidden;
  transition: background .5s var(--ease);
  cursor: none;
}

/* Animated accent glow that slides in from bottom-left */
.project::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 100%,
    rgba(255, 92, 40, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
}
.project:hover::before { opacity: 1; }

.project:hover {
  background: rgba(255, 255, 255, 0.015);
}

.project__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}
.project__country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
.project__country .flag {
  font-size: 14px;
  line-height: 1;
}
.project__year {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
}

.project__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 40px 0 12px;
  color: var(--ink);
  transition: color .5s var(--ease), transform .6s var(--ease);
}
.project:hover .project__name {
  color: var(--accent);
  transform: translateY(-4px);
}

.project__tag {
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.project__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color .4s var(--ease), gap .4s var(--ease);
  align-self: flex-start;
}
.project__cta svg {
  transition: transform .4s var(--ease);
}
.project:hover .project__cta {
  color: var(--ink);
  gap: 12px;
}
.project:hover .project__cta svg {
  transform: translate(2px, -2px);
}

/* "View" cursor label handled by existing .is-view class */

.work__note {
  margin-top: 60px;
  font-size: 14px;
  color: var(--ink-dim);
  text-align: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.work__note a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.work__note a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─────────────────────────────────────────────
   PROCESS
   ───────────────────────────────────────────── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.step {
  position: relative;
}
.step__num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}
.step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.step p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.step__time {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: inline-block;
  min-width: 100px;
}

/* ─────────────────────────────────────────────
   QUOTE
   ───────────────────────────────────────────── */
.quote {
  padding: 160px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.quote__text {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.quote__text::before { content: '"'; color: var(--accent); }
.quote__text::after { content: '"'; color: var(--accent); }
.quote__cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
  font-size: 14px;
  color: var(--ink-dim);
}
.quote__role { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; }

/* ─────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .4s var(--ease), transform .4s var(--ease),
              background .4s var(--ease);
  position: relative;
}
.plan:hover {
  border-color: rgba(242,240,234,0.2);
  transform: translateY(-4px);
}
.plan--featured {
  background: linear-gradient(180deg, rgba(255,92,40,0.06), transparent 60%);
  border-color: rgba(255,92,40,0.3);
}
.plan--featured:hover { border-color: var(--accent); }
.plan__badge {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.plan__badge--hot {
  color: var(--accent);
  border-color: rgba(255,92,40,0.4);
  background: rgba(255,92,40,0.08);
}
.plan__price {
  font-family: var(--serif);
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.plan__price--custom { font-size: 44px; }
.plan__currency { font-size: 28px; color: var(--ink-dim); }
.plan__price small {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-dim);
  font-weight: 400;
  letter-spacing: 0;
}
.plan__desc {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
  min-height: 44px;
}
.plan__features {
  list-style: none;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  flex-grow: 1;
}
.plan__features li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 24px;
  position: relative;
}
.plan__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   CTA
   ───────────────────────────────────────────── */
.cta {
  text-align: center;
  padding: 180px 0;
  border-top: 1px solid var(--line);
}
.cta__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 40px;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}
.cta__title .reveal {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.cta__title.is-visible .reveal { opacity: 1; transform: translateY(0); }
.cta__title.is-visible .reveal:nth-child(2) { transition-delay: 0.1s; }
.cta__title.is-visible .reveal:nth-child(3) { transition-delay: 0.2s; }
.cta__title em { color: var(--accent); }

.cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta__note {
  color: var(--ink-dim);
  font-size: 13px;
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 40px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 60px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
}
.footer__brand em { color: var(--accent); }
.footer__tagline { color: var(--ink-dim); font-size: 14px; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer__cols h5 {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: var(--ink);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.footer__cols a:hover { color: var(--accent); transform: translateX(4px); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 12px;
  color: var(--ink-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────────────────────────────────────────────
   REVEAL
   ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; flex-direction: column; gap: 5px; padding: 10px; }
  .nav__burger span {
    width: 22px; height: 1px; background: var(--ink);
    transition: transform .3s var(--ease);
  }
  .service { grid-template-columns: 40px 1fr; gap: 20px; }
  .service__desc { grid-column: 1 / -1; }
  .service__arrow { display: none; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero__scroll { display: none; }
   .work__grid { grid-template-columns: 1fr; }
  .project {
    min-height: 260px;
    padding: 40px 32px 36px;
  }
  .project__name { font-size: 40px; }
}

@media (max-width: 640px) {
  section { padding: 90px 0; }
  section > * { padding-left: 24px; padding-right: 24px; }
  .nav__inner { padding: 0 24px; }
  .hero { padding: 130px 24px 40px; }
  .hero__title { font-size: clamp(42px, 14vw, 64px); }
  .work__grid { grid-template-columns: 1fr; gap: 48px; }
  .process__steps { grid-template-columns: 1fr; gap: 48px; }
  .footer { padding: 60px 24px 30px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .plan__price { font-size: 44px; }
  .statement { padding-top: 90px; padding-bottom: 90px; }
   .project {
    min-height: 220px;
    padding: 32px 24px 28px;
  }
  .project__name { font-size: 32px; margin-top: 32px; }
  .project__tag { font-size: 13px; margin-bottom: 24px; }
  .work__note { padding: 0 24px; }
}