/* Restored layout from before the divider/navbar shift. */
:root {
  --paper: #ffffff;
  --ink: #1b1d1c;
  --muted: #6b706d;
  --brand: #5a6b63;
  --accent: #2c4a4e;
  --dark: #1b1d1c;
  --gray-panel: #ececec;
  --header-h: 88px;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.08);

  --about: #c5d86d;
  --projects: #3d5256;
  --skills: #3db8c5;
  --experiment: #2f4550;
  --education: #d4b86a;
  --contact: #d5d0c8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

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

/* ---------- header ---------- */
.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.75rem 4vw;
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #111;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.brand:hover {
  opacity: 0.7;
}

.brand-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.4rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.85rem;
  color: #111;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(20, 20, 20, 0.12);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--dark);
  color: #fff;
}

/* ---------- Clyde home ---------- */
html:has(body[data-page="home"]),
body[data-page="home"] {
  height: 100%;
  overflow: hidden;
}

body[data-page="home"] .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
}

.clyde-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.clyde-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  height: 100%;
  background: var(--gray-panel);
  box-shadow: 20px -20px 69px -27px rgba(0, 0, 0, 0.16);
}

.clyde-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  animation: fadeIn 1s ease both;
  transition: transform 0.8s ease;
}

.clyde-photo:hover img {
  transform: scale(1.03);
}

.slash {
  position: absolute;
  left: -2%;
  width: 56px;
  height: 50%;
  background: #fff;
  border-right: 5px solid rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.slash-top {
  top: 0;
  transform: skewX(10deg);
}

.slash-bottom {
  bottom: 0;
  transform: skewX(-10deg);
}

.clyde-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 3em 8rem 45px;
}

.hero-kicker {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeUp 0.6s ease both;
}

.hero-kicker strong {
  font-weight: 800;
}

.clyde-copy h1 {
  margin: 0 0 1.6rem;
  max-width: 16ch;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #000;
  animation: fadeUp 0.7s 0.12s ease both;
}

.clyde-copy h1 span {
  color: var(--accent);
}

.hero-roles {
  margin: -0.7rem 0 1.2rem;
  max-width: 46ch;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5c5c5c;
  animation: fadeUp 0.7s 0.18s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.7s 0.24s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 0.85rem 1.5rem;
  border-radius: 40px;
  border: 2px solid var(--brand);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 24px 36px -11px rgba(0, 0, 0, 0.09);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 28px -10px rgba(0, 0, 0, 0.18);
}

.btn-solid {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-solid:hover,
.btn-solid:focus-visible {
  background: #111;
  border-color: #111;
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- bottom dock: circles + socials ---------- */
.hero-dock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.55rem 5vw 0.7rem 45px;
  animation: fadeUp 0.7s 0.36s ease both;
}

.cta-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-4px);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.16);
}

.cta {
  width: 68px;
  height: 68px;
  margin-left: -14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.cta:first-child {
  margin-left: 0;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.16);
  z-index: 2;
}

.cta-about { background: var(--about); z-index: 1; }
.cta-projects { background: var(--projects); z-index: 2; }
.cta-skills { background: var(--skills); z-index: 3; }
.cta-experiences { background: var(--experiment); color: #f6f3ee; z-index: 4; }
.cta-education { background: var(--education); z-index: 5; }
.cta-contact { background: var(--contact); z-index: 6; }

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.hero-copyright {
  flex: 1;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  padding: 0.55rem 5vw 0.7rem;
  color: var(--muted);
}

.site-footer .copyright {
  grid-column: 2;
  text-align: center;
}

.site-footer .socials {
  grid-column: 3;
  justify-self: end;
}

/* ---------- about me ---------- */
html:has(body[data-page="about"]),
body[data-page="about"] {
  height: 100%;
  overflow: hidden;
}

body[data-page="about"] {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

body[data-page="about"] .site-header {
  flex-shrink: 0;
}

body[data-page="about"] .site-footer {
  flex-shrink: 0;
  padding: 0.55rem 5vw 0.7rem;
}

.about-me {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 0 6vw 1.6rem;
}

.about-me-stage {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 1fr);
  align-items: center;
  width: min(1040px, 100%);
}

.about-me-photo {
  position: relative;
  z-index: 1;
}

.about-me-frame {
  position: absolute;
  top: -16px;
  right: -18px;
  bottom: 18px;
  left: 16px;
  border: 10px solid #d4b86a;
  z-index: 0;
}

.about-me-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(64vh, 500px);
  object-fit: cover;
  object-position: 28% 18%;
}

.about-me-card {
  position: relative;
  z-index: 2;
  margin: 2.6rem 0 2.6rem -10%;
  background: #efefef;
  padding: 2.6rem 2.4rem 2.2rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.1);
}

.about-me-kicker {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: #222;
}

.about-me-card h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.about-me-card p {
  margin: 0 auto 0.8rem;
  max-width: 44ch;
  color: #6b6b6b;
  font-size: 0.86rem;
  line-height: 1.65;
}

.about-me-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  min-width: 150px;
  padding: 0.72rem 1.5rem;
  background: var(--dark);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.about-me-btn:hover,
.about-me-btn:focus-visible {
  transform: translateY(-2px);
  background: #111;
}

@media (max-width: 800px) {
  html:has(body[data-page="about"]),
  body[data-page="about"] {
    height: auto;
    overflow: auto;
  }

  body[data-page="about"] {
    height: auto;
    display: block;
  }

  body[data-page="about"] .site-footer {
    position: static;
    padding: 0.55rem 5vw 0.7rem;
  }

  .about-me {
    display: block;
    padding: 0.6rem 6vw 1.5rem;
  }

  .about-me-stage {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .about-me-frame {
    top: -10px;
    right: -10px;
    bottom: 12px;
    left: 10px;
    border-width: 7px;
  }

  .about-me-photo img {
    height: 380px;
  }

  .about-me-card {
    margin: -4.8rem 0 0 10%;
    padding: 1.8rem 1.3rem 1.6rem;
  }
}

/* ---------- inner pages ---------- */
.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.5rem 5vw 5rem;
  animation: fadeUp 0.55s ease both;
}

.page h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.lede {
  color: var(--muted);
  margin: 0 0 2.2rem;
  font-size: 1.05rem;
}

.stack {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: #f7f7f5;
  border: 1px solid rgba(20, 20, 20, 0.05);
  border-radius: 18px;
  padding: 1.35rem 1.45rem;
  overflow-wrap: anywhere;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.card p,
.card li {
  color: #3d3d3d;
}

.card ul {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 0.6rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}

.contact-list a:hover {
  text-decoration: underline;
}

html:has(body[data-page="contact"]),
body[data-page="contact"] {
  height: 100%;
  overflow: hidden;
}

body[data-page="contact"] {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

body[data-page="contact"] .site-header {
  flex-shrink: 0;
}

body[data-page="contact"] .site-footer {
  flex-shrink: 0;
  padding: 0.55rem 5vw 0.7rem;
}

.contact-page {
  flex: 1;
  max-width: 1040px;
  min-height: 0;
  padding: 0.2rem 5vw 0.6rem;
}

.contact-page h1 {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  margin-bottom: 0.15rem;
}

.contact-page .lede {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 0.85rem;
  align-items: start;
}

.contact-form,
.contact-page .card {
  padding: 0.85rem 1rem;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.contact-field {
  display: grid;
  gap: 0.2rem;
}

.contact-field label {
  font-size: 0.72rem;
  font-weight: 600;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.85rem;
  border-radius: 8px;
  padding: 0.42rem 0.65rem;
  outline: none;
  resize: vertical;
}

.contact-field textarea {
  min-height: 4.2rem;
  max-height: 7rem;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 74, 78, 0.12);
}

.contact-submit {
  justify-self: start;
  border: 0;
  border-radius: 3px;
  background: var(--dark);
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.05rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-2px);
  background: #111;
}

.contact-status {
  margin: 0;
  font-size: 0.78rem;
  color: var(--accent);
}

.contact-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.contact-page .contact-list {
  gap: 0.5rem;
  font-size: 0.88rem;
}

@media (max-width: 800px) {
  html:has(body[data-page="contact"]),
  body[data-page="contact"] {
    height: auto;
    overflow: auto;
  }

  body[data-page="contact"] {
    height: auto;
    display: block;
  }

  .contact-layout,
  .contact-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- featured projects ---------- */
.work {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4vw 2.4rem;
  box-sizing: border-box;
}

.work-kicker {
  margin: 0 0 0.2rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  letter-spacing: -0.04em;
  color: var(--ink);
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.work-filters button {
  border: 0;
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  background: #f3f1ee;
  color: var(--ink);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.work-filters button.is-active,
.work-filters button:hover {
  background: var(--dark);
  color: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  grid-auto-rows: min-content;
  gap: 0.85rem;
}

.work-card {
  display: flex;
  flex-direction: column;
  height: fit-content;
  min-width: 0;
  background: #f7f5f2;
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card.is-hidden {
  display: none;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.work-media {
  height: 112px;
  flex-shrink: 0;
  overflow: hidden;
  background: #dfe3e2;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.75rem 0.85rem 0.85rem;
}

.work-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.work-body h2 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--ink);
}

.work-icons {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.work-icons a {
  color: #6a6a6a;
  transition: color 0.2s ease;
}

.work-icons a:hover {
  color: var(--accent);
}

.work-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.work-body p {
  margin: 0;
  color: #5c5c5c;
  font-size: 0.82rem;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-tags li {
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  background: #e8eceb;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}

.work-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.work-btn-solid {
  background: var(--dark);
  color: #fff;
}

.work-btn-ghost {
  background: var(--dark);
  color: #fff;
}

@keyframes fadeUp {
  from {
    transform: translateY(16px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav-links a {
    padding: 0.42rem 0.7rem;
    font-size: 0.75rem;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  html:has(body[data-page="home"]),
  body[data-page="home"] {
    height: auto;
    overflow: auto;
  }

  .site-header,
  body[data-page="home"] .site-header {
    position: relative;
    background: #fff;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 5vw;
    left: 5vw;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 14px;
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
    z-index: 20;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
  }

  .clyde-hero {
    height: auto;
    min-height: auto;
  }

  .clyde-photo {
    position: relative;
    width: 100%;
    height: 62vw;
    min-height: 320px;
    max-height: 520px;
  }

  .slash {
    display: none;
  }

  .clyde-copy {
    min-height: auto;
    max-width: none;
    padding: 2.5rem 6vw 1.25rem;
  }

  .clyde-copy h1 {
    max-width: none;
  }

  .hero-dock {
    position: relative;
    bottom: auto;
    padding: 0.55rem 6vw 0.7rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-copyright {
    flex: 1 1 auto;
    text-align: center;
  }

  .socials {
    margin-left: auto;
  }

  .cta-row {
    flex-wrap: wrap;
  }

  .cta {
    width: 62px;
    height: 62px;
    margin-left: -10px;
    font-size: 0.54rem;
  }
}

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

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.5rem;
  }

  .site-footer .copyright,
  .site-footer .socials {
    grid-column: 1;
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .cta {
    width: 60px;
    height: 60px;
    margin: 0 6px 6px 0;
  }

  .cta:first-child {
    margin-left: 0;
  }
}
