/* ============================================================
   SeventyTwo Studios
   Palette: deep forest green accent on a warm, restrained cream,
   deep warm-charcoal ink, amber used only as a sparing highlight.
   (The brand colour does the emotional work; the surface stays calm.)
   ============================================================ */

:root {
  /* Surfaces (OKLCH) */
  --bg:        oklch(0.972 0.011 83);   /* warm paper */
  --bg-2:      oklch(0.948 0.018 78);   /* deeper warm panel for alternating sections */
  --surface:   oklch(0.995 0.005 83);   /* near-white card surface */

  /* Ink */
  --ink:       oklch(0.235 0.014 60);   /* deep warm charcoal */
  --ink-soft:  oklch(0.405 0.018 64);   /* muted body, passes AA on --bg */
  --line:      oklch(0.872 0.014 78);   /* hairlines */

  /* Brand */
  --green:      oklch(0.43 0.085 156);  /* forest, primary + CTA */
  --green-deep: oklch(0.36 0.078 156);  /* hover / pressed */
  --green-ink:  oklch(0.30 0.06 156);   /* green text on light */
  --green-tint: oklch(0.95 0.022 156);  /* soft green wash */
  --amber:      oklch(0.76 0.13 71);    /* sparing warm highlight */

  /* Footer dark (a deep green-charcoal, a satisfying end) */
  --dark:       oklch(0.235 0.022 158);
  --dark-soft:  oklch(0.78 0.02 150);   /* muted text on dark */
  --dark-line:  oklch(0.34 0.022 158);

  /* On-colour text */
  --on-green:  oklch(0.985 0.01 90);

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Hanken Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Radii (one soft scale, pills for interactive) */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Motion (emil-design-eng curves) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);

  --shadow-sm: 0 1px 2px oklch(0.3 0.03 80 / 0.06), 0 2px 8px oklch(0.3 0.03 80 / 0.05);
  --shadow-md: 0 12px 30px oklch(0.3 0.04 90 / 0.10), 0 4px 10px oklch(0.3 0.04 90 / 0.06);
  --shadow-lg: 0 30px 70px oklch(0.28 0.05 90 / 0.16), 0 10px 24px oklch(0.28 0.05 90 / 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--green); color: var(--on-green); }

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--green); color: var(--on-green); padding: 0.6rem 1.2rem;
  border-radius: var(--r-pill); z-index: 100; transition: top 160ms var(--ease-out);
}
.skip-link:focus { top: 0.75rem; }

:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Type scale ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--ink);
}
h2 { font-size: clamp(2rem, 4.6vw, 3.15rem); }
h3 { font-size: clamp(1.18rem, 2.2vw, 1.45rem); letter-spacing: -0.02em; line-height: 1.15; }
p { text-wrap: pretty; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 0.85rem 1.6rem; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 200ms var(--ease-out),
              box-shadow 200ms var(--ease-out);
}
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.06rem; }
.btn--solid {
  background: var(--green); color: var(--on-green);
  box-shadow: 0 6px 18px oklch(0.43 0.085 156 / 0.28);
}
.btn--solid:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 10px 26px oklch(0.43 0.085 156 / 0.34); }
.btn--solid:active { transform: translateY(0) scale(0.97); }

/* ============================================================
   1 · NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.972 0.011 83 / 0.78);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out),
              background-color 220ms var(--ease-out);
}
.nav[data-scrolled="true"] {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: oklch(0.972 0.011 83 / 0.92);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 64px;
}

/* Wordmark */
.wordmark {
  font-family: var(--font-display); font-weight: 800; font-size: 1.32rem;
  letter-spacing: -0.03em; line-height: 1; display: inline-flex; align-items: baseline; gap: 0.32rem;
  color: var(--ink);
}
.wordmark__two { color: var(--green); }
.wordmark__studios {
  font-weight: 500; font-size: 0.72em; letter-spacing: 0.01em;
  color: var(--ink-soft); align-self: center;
}
.wordmark--light .wordmark__seventy { color: var(--on-green); }
.wordmark--light .wordmark__two { color: var(--amber); }
.wordmark--light .wordmark__studios { color: var(--dark-soft); }

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links > a:not(.btn) {
  font-weight: 500; font-size: 0.97rem; color: var(--ink-soft);
  position: relative; padding: 0.25rem 0; transition: color 180ms var(--ease-out);
}
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform 240ms var(--ease-out);
}
.nav__links > a:not(.btn):hover { color: var(--ink); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }
.nav__cta { padding: 0.6rem 1.25rem; font-size: 0.95rem; }

/* Burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 10px; cursor: pointer; border-radius: var(--r-sm);
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 260ms var(--ease-out), opacity 180ms var(--ease-out);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 0.5rem var(--gutter) 1.4rem;
  border-top: 1px solid var(--line);
  background: oklch(0.972 0.011 83 / 0.97);
  backdrop-filter: blur(12px);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a:not(.btn) {
  padding: 0.85rem 0.25rem; font-weight: 500; font-size: 1.05rem;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.nav__mobile .btn { margin-top: 0.8rem; }

/* ============================================================
   2 · HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: min(92dvh, 780px);
  display: flex; align-items: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(3.5rem, 9vw, 7rem);
}
.hero__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }

.hero__hello {
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  color: var(--green-ink); margin-bottom: 1.4rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.hero__hello::before {
  content: ""; width: 26px; height: 1.5px; background: var(--green); display: inline-block;
}
.hero__title {
  font-size: clamp(2.7rem, 7.4vw, 5.2rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.0;
  margin-bottom: 1.6rem;
}
.hero__title-accent { display: block; color: var(--green); }
.hero__sub {
  font-size: clamp(1.08rem, 1.9vw, 1.32rem); color: var(--ink-soft);
  max-width: 42ch; margin: 0 auto 2.3rem; line-height: 1.55;
}

/* Animated background: gentle drifting light + faint grid. GPU only (transform/opacity). */
.hero__bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5;
  will-change: transform;
}
.hero__blob--green {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, oklch(0.7 0.12 156 / 0.55), transparent 70%);
  top: -12%; left: -8%; animation: drift1 22s ease-in-out infinite alternate;
}
.hero__blob--amber {
  width: 40vw; height: 40vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, oklch(0.85 0.12 74 / 0.5), transparent 70%);
  bottom: -16%; right: -10%; animation: drift2 26s ease-in-out infinite alternate;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(oklch(0.4 0.02 80 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.4 0.02 80 / 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
@keyframes drift1 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(40px,30px,0) scale(1.12); } }
@keyframes drift2 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-46px,-26px,0) scale(1.15); } }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { scroll-margin-top: 80px; }
.what, .work, .how, .included, .about, .contact {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) var(--gutter);
}
.section-head { max-width: 40ch; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.section-head__sub { color: var(--ink-soft); font-size: 1.12rem; margin-top: 0.9rem; max-width: 46ch; }

/* ============================================================
   3 · WHAT I DO  (2x2 bento with gentle size variation)
   ============================================================ */
.what__grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}
.tile {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.3rem);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: oklch(0.43 0.085 156 / 0.35); }
.tile__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 0.4rem;
  background: var(--green-tint); color: var(--green-ink);
}
.tile__icon svg { width: 26px; height: 26px; }
.tile h3 { color: var(--ink); }
.tile p { color: var(--ink-soft); font-size: 1.02rem; }
/* First tile spans wider to break the identical-grid rhythm */
.what__grid .tile:first-child { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.what__grid .tile:first-child .tile__icon { margin-bottom: 0; }
.what__grid .tile:first-child > div { flex: 1 1 280px; display: flex; flex-direction: column; gap: 0.5rem; }

/* ============================================================
   4 · PORTFOLIO
   ============================================================ */
.work { max-width: 1240px; }
.work-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }

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

/* Browser frame */
.browser {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-lg);
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
.work-card:hover .browser { transform: translateY(-5px); box-shadow: 0 40px 90px oklch(0.28 0.05 90 / 0.2); }
.browser__bar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1rem; background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.browser__dots { display: inline-flex; gap: 0.4rem; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); display: block; }
.browser__dots i:nth-child(1) { background: oklch(0.78 0.13 30); }
.browser__dots i:nth-child(2) { background: oklch(0.85 0.12 80); }
.browser__dots i:nth-child(3) { background: oklch(0.78 0.1 150); }
.browser__url {
  flex: 1; text-align: center; font-size: 0.82rem; color: var(--ink-soft);
  background: var(--surface); border-radius: var(--r-pill); padding: 0.32rem 1rem;
  border: 1px solid var(--line); max-width: 320px; margin: 0 auto;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Screen holds the branded panel + the (optional) live iframe.
   Fixed height + overflow hidden shows just the top portion of each scaled site. */
.browser__screen {
  position: relative; height: 380px; overflow: hidden; background: var(--bg-2);
}

/* Branded preview panel (default state, always looks intentional) */
.work-card__panel {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.7rem; text-align: center; padding: 1.5rem;
  background:
    radial-gradient(120% 120% at 20% 0%, oklch(0.7 0.1 156 / 0.18), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, oklch(0.85 0.12 74 / 0.18), transparent 55%),
    var(--bg-2);
}
.work-card__panel-trade {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--ink);
}
.work-card__panel-cue { font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }
.work-card__shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* Live iframe: 200% box scaled to 0.5 from top-left so it fills the frame
   at half scale, showing the top of the site. Hidden until proven embeddable. */
.work-card__frame {
  position: absolute; top: 0; left: 0; z-index: 2;
  width: 200%; height: 200%;
  transform: scale(0.5); transform-origin: top left;
  border: 0; opacity: 0; pointer-events: none;
  transition: opacity 500ms var(--ease-out);
}
.browser[data-embed-ok="true"] .work-card__frame { opacity: 1; }

.work-card__meta {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.7rem;
}
.work-card__trade {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  letter-spacing: -0.02em; color: var(--ink); display: block;
}
.work-card__desc { color: var(--ink-soft); margin-top: 0.25rem; font-size: 1.02rem; }
.work-card__link {
  font-weight: 600; color: var(--green-ink); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.3rem 0;
}
.work-card__link span { transition: transform 220ms var(--ease-out); }
.work-card__link:hover span { transform: translateX(5px); }

/* ============================================================
   5 · HOW IT WORKS  (connected 3-step flow)
   ============================================================ */
.how { background: var(--bg-2); max-width: none; }
.how > .section-head, .how > .steps {
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; position: relative; }
.step {
  position: relative; padding: 2rem 1.6rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
}
.step__num {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 50%; background: var(--green); color: var(--on-green);
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); }

/* ============================================================
   6 · WHAT'S INCLUDED  (asymmetric split + 2-col checklist)
   ============================================================ */
.included { }
.included__inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.included__intro h2 { margin-bottom: 1rem; }
.included__intro p { color: var(--ink-soft); font-size: 1.1rem; }
.included__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; }
.included__list li {
  display: flex; align-items: center; gap: 0.9rem;
  font-weight: 500; font-size: 1.06rem; padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-tint); position: relative;
}
.tick::after {
  content: ""; position: absolute; left: 9px; top: 6px;
  width: 6px; height: 11px; border: solid var(--green-ink);
  border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}

/* ============================================================
   7 · ABOUT  (asymmetric media + copy)
   ============================================================ */
.about {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__photo {
  aspect-ratio: 1 / 1; border-radius: var(--r-lg); width: 100%;
  box-shadow: var(--shadow-md);
}
.about__photo--placeholder {
  display: grid; place-items: center; color: var(--green-ink); font-weight: 600;
  border-radius: 50%;
  background:
    radial-gradient(130% 130% at 25% 15%, oklch(0.7 0.1 156 / 0.28), transparent 55%),
    radial-gradient(130% 130% at 90% 95%, oklch(0.85 0.12 74 / 0.25), transparent 55%),
    var(--green-tint);
  border: 1px solid var(--line);
}
.about__initials {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 9vw, 4.6rem); letter-spacing: -0.03em;
  line-height: 1; color: var(--green-ink);
}
.about__copy h2 { margin-bottom: 1.3rem; }
.about__copy p { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 1rem; max-width: 52ch; }
.about__copy p:last-child { margin-bottom: 0; }

/* ============================================================
   8 · CONTACT
   ============================================================ */
.contact__head { max-width: 44ch; }
.contact__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 0.85rem 1rem; width: 100%; resize: vertical;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background-color 180ms var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); opacity: 0.75; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px oklch(0.43 0.085 156 / 0.16);
  background: var(--surface);
}
.contact__submit { display: flex; }
.contact__submit .btn { width: 100%; }

.contact__direct { text-align: center; margin-top: 2rem; }
.contact__email {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 3vw, 1.7rem);
  letter-spacing: -0.02em; color: var(--green-ink);
  border-bottom: 2px solid transparent; transition: border-color 200ms var(--ease-out);
}
.contact__email:hover { border-bottom-color: var(--green); }
.contact__direct p { color: var(--ink-soft); margin-top: 0.6rem; }

/* ============================================================
   9 · FOOTER
   ============================================================ */
.footer { background: var(--dark); color: var(--on-green); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 2rem;
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.footer__tag { color: var(--dark-soft); margin-top: 0.9rem; max-width: 32ch; }
.footer__nav { display: flex; gap: 1.6rem; flex-wrap: wrap; align-items: center; }
.footer__nav a { color: var(--dark-soft); font-weight: 500; transition: color 180ms var(--ease-out); }
.footer__nav a:hover { color: var(--on-green); }
.footer__base {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.6rem var(--gutter) 2.4rem;
  border-top: 1px solid var(--dark-line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--dark-soft); font-size: 0.92rem;
}

/* ============================================================
   MOTION · scroll reveals (paired with IntersectionObserver)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__blob { animation: none !important; }
  .btn, .tile, .browser, .work-card__link span { transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .included__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 360px; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 1.02rem; }
  .what__grid { grid-template-columns: 1fr; }
  .what__grid .tile:first-child { flex-direction: column; align-items: flex-start; }
  .what__grid .tile:first-child .tile__icon { margin-bottom: 0.4rem; }
  .included__list { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 1.5rem; }
}

@media (hover: none) {
  .tile:hover, .browser, .work-card:hover .browser { transform: none; }
}
