/* Cobra Chicken Technologies — cobrachicken.tech
   Palette: village green. Type: Fraunces (wonky, soft) for headings,
   Atkinson Hyperlegible for reading, Caveat for the goose's to-do list only. */

:root {
  --paper: #F1F2E4;
  --paper-deep: #E3E6CE;
  --white: #FBFBF6;
  --grass: #7DA453;
  --grass-deep: #5E8A3B;
  --moss: #3F5E33;
  --ink: #22301F;
  --ink-soft: #52604C;
  --sticky: #F4C74C;
  --sticky-deep: #D9A92A;
  --sky: #D7E5EC;
  --goose: #8C7B65;
  --rule: rgba(34, 48, 31, 0.18);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Atkinson Hyperlegible", "Helvetica Neue", Arial, sans-serif;
  --font-hand: "Caveat", "Segoe Print", "Bradley Hand", cursive;

  --measure: 62ch;
  --container: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.4rem; line-height: 1.2; }

p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
strong { font-weight: 700; }

a { color: var(--moss); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

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

.wrap {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

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

.lede {
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.section { padding-block: var(--section); }
.section-white { background: var(--white); }
.section-sky { background: var(--sky); }
.section-green { background: #BFDABA; }
.section-moss { background: var(--moss); color: var(--paper); }
.section-moss a { color: var(--paper); }
.section-moss a:hover { color: var(--sticky); }
.section-moss .lede { color: #D9E3CF; }

.intro { max-width: 40rem; margin-bottom: 3rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  background: var(--sticky);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  transition: transform 120ms ease, background 120ms ease;
}
.btn:hover { background: var(--sticky-deep); color: var(--ink); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-small { padding: 0.55rem 1rem; font-size: 0.95rem; }
.btn-quiet {
  background: transparent;
  border-color: var(--ink);
}
.btn-quiet:hover { background: var(--paper-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem 1.25rem; align-items: center; margin-top: 2rem; }
.link-plain { font-weight: 700; }

/* Header */
.site-head {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-head .wrap {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 4.25rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: var(--ink); text-decoration: none;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em;
  margin-right: auto;
}
.brand img { width: 2.4rem; height: auto; }
.brand em { font-style: normal; font-weight: 500; color: var(--ink-soft); }
.site-nav ul { display: flex; gap: 1.5rem; list-style: none; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 0.98rem; }
.site-nav a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.menu { display: none; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .menu { display: block; position: relative; }
  .menu summary {
    list-style: none; cursor: pointer; font-weight: 700; padding: 0.5rem 0.25rem;
  }
  .menu summary::-webkit-details-marker { display: none; }
  .menu ul {
    position: absolute; right: 0; top: 100%;
    background: var(--white); border: 1px solid var(--rule); border-radius: 10px;
    list-style: none; padding: 0.5rem 0; min-width: 12rem;
    box-shadow: 0 10px 30px rgba(34, 48, 31, 0.12);
  }
  .menu li a { display: block; padding: 0.6rem 1rem; color: var(--ink); text-decoration: none; font-weight: 700; }
  .menu li a:hover { background: var(--paper); }
}
@media (max-width: 520px) {
  .site-head .btn { display: none; }
  .brand span { font-size: 1.05rem; }
}

/* Hero */
.hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(2rem, 6vw, 4rem); }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 { max-width: 15ch; }
.hero .lede { max-width: 34rem; }
.hero-note { margin-top: 1.5rem; color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}

/* The goose's to-do list */
.todo {
  --rot: 1.6deg;
  --lh: 2.3rem;
  position: relative;
  justify-self: end;
  width: min(100%, 24rem);
  padding: 1.75rem 1.25rem 2rem 3.3rem;
  background:
    linear-gradient(90deg, transparent 2.6rem, #E7A9A3 2.6rem, #E7A9A3 calc(2.6rem + 2px), transparent calc(2.6rem + 2px)),
    repeating-linear-gradient(180deg, transparent 0 var(--lh), #C4D6E3 var(--lh) calc(var(--lh) + 1.5px));
  background-color: #FFFDF6;
  transform: rotate(var(--rot));
  box-shadow: 0 18px 40px -18px rgba(34, 48, 31, 0.45), 0 2px 0 rgba(34, 48, 31, 0.08);
  font-family: var(--font-hand);
  font-size: 1.45rem;
  line-height: var(--lh);
  color: #2A3550;
  white-space: nowrap;
}
.todo::before {
  /* torn top edge */
  content: "";
  position: absolute; left: 0; right: 0; top: -7px; height: 8px;
  background: #FFFDF6;
  clip-path: polygon(0 100%, 3% 30%, 7% 90%, 12% 20%, 17% 80%, 23% 35%, 28% 95%, 34% 25%, 40% 70%, 46% 15%, 52% 85%, 58% 30%, 63% 90%, 69% 20%, 75% 75%, 81% 30%, 87% 95%, 93% 25%, 100% 70%, 100% 100%);
}
.tape {
  position: absolute; top: -0.95rem; left: 50%; width: 6.5rem; height: 1.7rem;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(244, 199, 76, 0.55);
  border-left: 1px dashed rgba(255,255,255,0.6);
  border-right: 1px dashed rgba(255,255,255,0.6);
}
.todo-title {
  font-weight: 700; font-size: 1.85rem; margin: 0 0 0.1rem;
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px;
}
.todo ul { list-style: none; }
.todo li {
  position: relative;
  width: fit-content;
  padding-right: 0.25rem;
}
.todo li.done { color: #55607a; }
.todo li span { display: inline-block; position: relative; }
.todo li .strike {
  position: absolute; left: -0.4rem; top: 0; height: var(--lh);
  width: calc(100% + 0.8rem);
  pointer-events: none;
  overflow: visible;
  clip-path: inset(0 100% 0 0);
  animation: cross-off 700ms cubic-bezier(.5,.05,.4,1) forwards;
  animation-delay: var(--d, 0.5s);
}
.todo li .strike path {
  fill: none;
  stroke: #2A3550;
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}
.todo li.soon::after {
  content: "(soon)";
  font-size: 1.15rem; color: #7c8496; margin-left: 0.4rem;
}
@keyframes cross-off { to { clip-path: inset(0); } }

@media (max-width: 860px) {
  .todo { justify-self: start; --rot: -1.2deg; margin-top: 1rem; }
}
@media (max-width: 520px) {
  .todo { --lh: 2rem; font-size: clamp(1.05rem, 4.4vw, 1.3rem); padding-left: 2.8rem; padding-right: 0.9rem; }
  .todo-title { font-size: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .todo li .strike { animation: none; clip-path: none; }
  .btn { transition: none; }
}

/* The hill the goose stands on */
.meadow {
  position: relative;
  height: clamp(120px, 16vw, 200px);
  margin-top: 1rem;
  overflow: hidden;
}
.meadow .hill { position: absolute; inset: auto 0 0 0; width: 100%; height: 100%; }
.meadow .goose-standing {
  position: absolute;
  left: clamp(6%, 12vw, 14%);
  bottom: 4%;
  width: clamp(110px, 13vw, 170px);
  height: auto;
}
.meadow .sign {
  position: absolute; right: clamp(4%, 8vw, 10%); bottom: 10%;
  font-family: var(--font-hand); font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--white);
  max-width: 18rem; text-align: right; opacity: 0.95;
}

/* What I fix: the goose on the desk, and the three problems beside it */
.fix-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.illo {
  margin: 0;
  /* 2px of padding shows the gradient behind the photo as a border that
     runs dark green along the bottom and fades out towards the top. */
  padding: 2px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(345deg, var(--moss) 0% 0%, rgba(63, 94, 51, 0) 60%);
}
.illo img { display: block; width: 100%; height: auto; border-radius: 0 0 14px 14px; }
.fix-grid .illo { max-width: 30rem; }
.fix-text .lede { max-width: 32rem; }
.problems { margin: 2.25rem 0 0; max-width: 34rem; }
.problems dt {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-weight: 600; font-size: 1.4rem; line-height: 1.2;
  margin-top: 1.5rem;
}
.problems dt:first-child { margin-top: 0; }
.problems dd { margin: 0.35rem 0 0; color: var(--ink-soft); }
.problems-coda { margin-top: 2.25rem; font-size: 1.2rem; max-width: 34rem; }
@media (max-width: 860px) {
  .fix-grid { grid-template-columns: 1fr; }
  .fix-grid .illo { max-width: 22rem; }
}

/* What I do / don't */
.do-dont {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.do-list { list-style: none; max-width: 36rem; }
.do-list li {
  padding: 1rem 0 1rem 2.3rem;
  border-top: 1px solid var(--rule);
  position: relative;
}
.do-list li:last-child { border-bottom: 1px solid var(--rule); }
.do-list li::before {
  /* a goose footprint-ish tick */
  content: "";
  position: absolute; left: 0.1rem; top: 1.35rem;
  width: 0.9rem; height: 0.9rem;
  background: var(--grass);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.dont {
  position: relative;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 1.75rem 1.75rem 1.75rem;
  margin-top: 0.5rem;
}
.dont h3 { margin-bottom: 1rem; }
.dont dl { margin: 0; }
.dont dt { font-weight: 700; margin-top: 1rem; }
.dont dd { margin: 0.2rem 0 0; color: var(--ink-soft); }
.dont-goose {
  display: flex; align-items: flex-start; justify-content: flex-end; gap: 0.5rem;
  margin-top: 1.5rem;
}
.dont-goose img { width: 4.25rem; height: auto; }
.dont-goose .silly-goose { transform: scaleX(-1); }
.honk {
  font-family: var(--font-hand); font-size: 1.6rem; font-weight: 700;
  background: var(--paper); border: 2px solid var(--ink);
  border-radius: 14px 14px 2px 14px;
  padding: 0.15rem 0.8rem; margin: 0; line-height: 1.3;
}
@media (max-width: 860px) { .do-dont { grid-template-columns: 1fr; } }

/* How it starts */
.teardown {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}
.review-photo {
  max-width: 26rem;
  justify-self: end;
  margin-top: 0.5rem;
  min-height: 0;
  display: flex;
}
figure.review-photo img {
  flex: 1;
  border: 2px solid var(--moss);
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 860px) {
  .teardown { grid-template-columns: 1fr; }
  .review-photo {
    justify-self: stretch;
    max-width: none;
    width: 100%;
    margin-top: 0;
    display: block;
  }
  figure.review-photo img { width: 100%; height: auto; min-height: 0; }
}
.price-tag {
  display: inline-block;
  font-family: var(--font-hand);
  background: var(--sticky);
  color: var(--ink);
  padding: 0.9rem 1.3rem 0.8rem;
  transform: rotate(-2deg);
  box-shadow: 0 10px 22px -12px rgba(34,48,31,.5);
  margin: 0.5rem 0 1.75rem;
  line-height: 1.1;
}
.price-tag b { display: block; font-size: 2.6rem; font-weight: 700; }
.price-tag span { font-size: 1.25rem; }
.steps { list-style: none; counter-reset: step; max-width: 34rem; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.5rem 3.2rem;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0.05rem;
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  background: var(--grass);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  display: grid; place-items: center;
}
.steps h3 { margin-bottom: 0.3rem; }
.steps p { color: var(--ink-soft); }
.ladder { margin-top: var(--section); }
.ladder-rows { border-top: 2px solid var(--ink); max-width: 56rem; }
.ladder-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) minmax(0, 1.6fr);
  gap: 1.5rem 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.ladder-row h3 { margin: 0; }
.ladder-row .terms { color: var(--ink); font-weight: 700; }
.ladder-row .terms small { display: block; font-weight: 400; color: var(--ink-soft); }
.ladder-row p { color: var(--ink-soft); }
@media (max-width: 720px) { .ladder-row { grid-template-columns: 1fr; gap: 0.5rem; } }

/* Who it's for */
.fits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
  margin-top: 2.5rem;
  max-width: 60rem;
}
.fits h3 { margin-bottom: 0.35rem; }
.fits p { color: var(--ink-soft); }
.not-yet {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  background: var(--paper);
  border-radius: 14px;
  max-width: 46rem;
}
.not-yet h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
@media (max-width: 720px) { .fits { grid-template-columns: 1fr; } }

/* Selected work */
.case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 1rem;
}
.case-study-client { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 0.5rem; }
.case-study-text .lede { max-width: 30rem; }
.case-study-facts { margin: 2rem 0 0; max-width: 30rem; }
.case-study-facts dt { font-weight: 700; margin-top: 1.25rem; }
.case-study-facts dt:first-child { margin-top: 0; }
.case-study-facts dd { margin: 0.25rem 0 0; color: var(--ink-soft); }

@media (max-width: 860px) { .case-study { grid-template-columns: 1fr; } }

/* Photos. A real photo is plain. A blocked-out one is dashed until it's replaced. */
.photo { margin: 0; }
.photo img { width: 100%; height: auto; border-radius: 14px; }
.photo.needed img { border: 2px dashed var(--moss); }
.photo figcaption {
  font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.6rem; line-height: 1.4;
}
.photo figcaption b { color: var(--moss); }
.photo:not(.needed) figcaption { display: none; }
.portrait img { border-radius: 14px 14px 50% 50% / 14px 14px 18% 18%; }

/* On a single-column layout, any width-capped image sits centred. */
@media (max-width: 860px) {
  .illo,
  .photo {
    margin-inline: auto;
  }
}

/* Full-width landscape between sections */
.band { position: relative; margin: 0; background: var(--paper-deep); }
.band img {
  width: 100%; height: clamp(220px, 34vw, 460px);
  object-fit: cover; border-radius: 0;
}
.band.needed img { border: 0; border-top: 2px dashed var(--moss); border-bottom: 2px dashed var(--moss); }
.band figcaption {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  width: min(100% - 2rem, 40rem);
  background: rgba(251,251,246,0.92); border-radius: 10px; padding: 0.6rem 0.9rem;
  margin: 0;
}
@media (max-width: 600px) {
  .band figcaption { position: static; transform: none; width: auto; padding: 0.75rem var(--gutter); border-radius: 0; }
}

/* A browser window drawn around the screenshot, so it reads as software */
.screen { margin-top: 0.5rem; }
.browser {
  display: flex; align-items: center; gap: 0.45rem;
  background: var(--ink); color: #B8C4B0;
  padding: 0.6rem 0.9rem;
  border-radius: 12px 12px 0 0;
  font-size: 0.8rem;
}
.browser span { width: 0.65rem; height: 0.65rem; border-radius: 50%; background: #7C8A73; }
.browser i {
  font-style: normal; margin-left: 0.75rem;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  background: rgba(251,251,246,0.1); border-radius: 6px;
  padding: 0.2rem 0.7rem; flex: 1; max-width: 22rem;
}
.screen img {
  border-radius: 0 0 12px 12px;
  border: 2px solid var(--ink); border-top: 0;
  box-shadow: 0 24px 50px -28px rgba(34,48,31,0.55);
}
.screen.needed img { border: 2px solid var(--ink); border-top: 0; }

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about .photo { max-width: 22rem; }
.creds {
  margin-top: 2rem; padding: 1.25rem 1.5rem;
  background: var(--paper); border-radius: 14px; font-size: 1rem;
  max-width: 40rem;
}
.creds ul { list-style: disc; padding-left: 1.2rem; margin-top: 0.5rem; color: var(--ink-soft); }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-intro .lede { max-width: 30rem; }
.contact-lines {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0 1rem;
  margin: 2.25rem 0 0;
  max-width: 32rem;
  font-size: 1.15rem;
}
.contact-lines dt, .contact-lines dd {
  margin: 0;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(251,251,246,0.22);
}
.contact-lines dt { color: #C6D3BC; font-size: 0.95rem; padding-top: 0.85rem; }
.contact-lines dt:nth-last-of-type(1), .contact-lines dd:last-of-type { border-bottom: 1px solid rgba(251,251,246,0.22); }
.contact-lines a { color: var(--white); text-decoration-thickness: 2px; }
.contact-lines a:hover { color: var(--sticky); }

/* The form is a sheet of paper on the desk, like the to-do list up top. */
.contact-form {
  position: relative;
  background: #FFFDF6;
  color: var(--ink);
  padding: 2.25rem 2rem 2rem;
  border-radius: 4px;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.55), 0 2px 0 rgba(0,0,0,0.12);
  transform: rotate(-0.6deg);
}
.contact-form .tape { top: -0.85rem; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 700; margin-bottom: 0.4rem; }
.field label small { font-weight: 400; color: var(--ink-soft); font-size: 0.9rem; margin-left: 0.35rem; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.field input:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--sticky); outline-offset: 2px;
}
.field textarea { resize: vertical; min-height: 6.5rem; }
.field ::placeholder { color: #8b9186; opacity: 1; }
.contact-form .btn { margin-top: 0.25rem; }
.form-note { margin-top: 1rem; font-size: 0.95rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { transform: none; margin-top: 1rem; }
}

/* Footer */
.site-foot {
  background: var(--paper-deep);
  padding: 2.5rem 0 3rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.site-foot .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2rem 4rem;
}
.site-foot .brand { font-size: 1.05rem; margin: 0 0 0.75rem; }
.site-foot p { max-width: 52ch; }
.site-foot a { color: var(--moss); }
@media (max-width: 720px) { .site-foot .wrap { grid-template-columns: 1fr; } }
