@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Mondwest";
  src: url("assets/fonts/mondwest.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --site-width: 39rem;
  --paper: #fcfcfd;
  --paper-surface: #f3f4f6;
  --ink: #1d2637;
  --muted: #536071;
  --border: #e1e4e9;
  --link-hover: #334bff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--ink) 36%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  color: var(--link-hover);
  outline: 2px solid var(--link-hover);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(29, 38, 55, 0.12);
  font-size: 0.875rem;
  font-weight: 600;
  transform: translateY(-6rem);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  max-width: var(--site-width);
  margin-inline: auto;
  padding: 2rem 2rem 0;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.nav-links a,
.mobile-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  text-decoration: none;
}

.brand {
  gap: 0.5rem;
  margin-right: auto;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.brand-avatar {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 28%;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  padding-inline: 4px;
}

.nav-links a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-links .hello-link {
  font-size: 20px;
}

.mobile-menu {
  display: none;
  position: relative;
  flex: 0 0 auto;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  place-items: center;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.mobile-menu ul {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  width: min(220px, calc(100vw - 40px));
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: var(--paper);
  list-style: none;
  box-shadow: 0 16px 35px rgba(29, 38, 55, 0.09);
}

.mobile-menu a {
  width: 100%;
  padding-inline: 8px;
}

.page-shell {
  max-width: var(--site-width);
  min-height: 100vh;
  margin-inline: auto;
  padding: 3.5rem 2rem 2rem;
}

.page-header {
  margin-bottom: 3rem;
}

.page-header h1 {
  margin: 0;
  font-family: "Mondwest", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.work-list {
  border-bottom: 1px solid var(--border);
}

.work-item {
  padding-block: 1.75rem;
  border-top: 1px solid var(--border);
}

.work-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px;
  gap: 1.25rem;
  text-decoration: none;
}

.work-copy {
  min-width: 0;
}

.work-item h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.work-description,
.work-result {
  margin-bottom: 0;
}

.work-description {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5rem;
}

.work-result {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.project-visual {
  position: relative;
  width: 144px;
  height: 90px;
  overflow: hidden;
  align-self: start;
  background: var(--paper-surface);
  isolation: isolate;
}

.project-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(29, 38, 55, 0.08);
  content: "";
  pointer-events: none;
}

.ticketshack {
  display: grid;
  place-items: center;
  background: #19191c;
}

.ticket-stub {
  position: relative;
  display: grid;
  width: 100px;
  height: 52px;
  align-content: center;
  padding-left: 40px;
  border-radius: 5px;
  background: #eaff4f;
  color: #19191c;
  line-height: 1;
  transform: rotate(-4deg);
}

.ticket-stub::before,
.ticket-stub::after {
  position: absolute;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #19191c;
  content: "";
}

.ticket-stub::before {
  left: -5px;
}

.ticket-stub::after {
  right: -5px;
}

.ticket-stub i {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 31px;
  border-left: 1px dashed rgba(25, 25, 28, 0.5);
}

.ticket-stub b {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.ticket-stub small {
  margin-top: 4px;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.jioflight {
  background: linear-gradient(145deg, #e9f8ff, #b4ddf1);
}

.jioflight svg {
  position: absolute;
  top: 18px;
  right: 21px;
  width: 46px;
  fill: #12608c;
  transform: rotate(-5deg);
}

.route-line {
  position: absolute;
  bottom: 23px;
  left: 18px;
  width: 87px;
  height: 42px;
  border: 2px dashed rgba(18, 96, 140, 0.42);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 60px 0 0;
  transform: rotate(8deg);
}

.route-line::before,
.route-line::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #12608c;
  border-radius: 50%;
  background: #e9f8ff;
  content: "";
}

.route-line::before {
  bottom: -2px;
  left: -5px;
}

.route-line::after {
  top: -5px;
  right: -2px;
}

.aamacure {
  background: linear-gradient(145deg, #f1fff8, #bdebd3);
}

.pulse {
  position: absolute;
  top: 43px;
  left: 12px;
  width: 121px;
  height: 2px;
  background: #2c8059;
  clip-path: polygon(0 45%, 29% 45%, 36% 0, 43% 100%, 50% 45%, 100% 45%, 100% 58%, 52% 58%, 43% 100%, 35% 22%, 31% 58%, 0 58%);
}

.medical-cross {
  position: absolute;
  top: 15px;
  right: 17px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2c8059;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.63);
}

.medical-cross::before,
.medical-cross::after {
  position: absolute;
  top: 7px;
  left: 12px;
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: white;
  content: "";
}

.medical-cross::after {
  transform: rotate(90deg);
}

.myfurever {
  background: linear-gradient(145deg, #fff1ed, #f6c4bb);
}

.heart {
  position: absolute;
  top: 25px;
  left: 60px;
  color: #b7464f;
  font-size: 28px;
  transform: rotate(-7deg);
}

.paw {
  position: absolute;
  width: 18px;
  height: 15px;
  border-radius: 50% 50% 46% 46%;
  background: rgba(126, 54, 58, 0.37);
}

.paw::before,
.paw::after {
  position: absolute;
  top: -8px;
  width: 7px;
  height: 8px;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.paw::before {
  left: 1px;
}

.paw::after {
  right: 1px;
}

.paw-one {
  top: 22px;
  left: 24px;
  transform: rotate(-18deg);
}

.paw-two {
  right: 19px;
  bottom: 17px;
  transform: rotate(18deg) scale(0.78);
}

.lmcalert {
  background: #e9eee9;
}

.map-road {
  position: absolute;
  height: 5px;
  background: white;
  box-shadow: 0 0 0 1px rgba(29, 38, 55, 0.04);
}

.road-one {
  top: 28px;
  left: -11px;
  width: 174px;
  transform: rotate(-14deg);
}

.road-two {
  top: 53px;
  left: -15px;
  width: 174px;
  transform: rotate(20deg);
}

.map-pin {
  position: absolute;
  top: 23px;
  left: 58px;
  width: 28px;
  height: 28px;
  border: 7px solid #d4483f;
  border-radius: 50% 50% 50% 0;
  background: white;
  filter: drop-shadow(0 4px 4px rgba(29, 38, 55, 0.16));
  transform: rotate(-45deg);
}

.map-pin i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.rotary {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #edf5ff, #c1d5ef);
}

.rotary-wheel {
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border: 8px dotted #235f99;
  border-radius: 50%;
  color: #235f99;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 0 2px #235f99, 0 0 0 2px #235f99;
  transform: rotate(-8deg);
}

.academia {
  background: linear-gradient(145deg, #fff9e5, #eedaa1);
}

.book {
  position: absolute;
  width: 64px;
  height: 50px;
  border-radius: 3px 6px 6px 3px;
}

.book-back {
  top: 20px;
  left: 30px;
  background: #c54d42;
  transform: rotate(-10deg);
}

.book-front {
  top: 23px;
  left: 50px;
  display: grid;
  place-items: center;
  background: #2f4e70;
  color: white;
  transform: rotate(7deg);
}

.book-front::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.35);
  content: "";
}

.book-front b {
  padding-left: 7px;
  font-family: "Mondwest", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.project-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ticketshack,
.rotary {
  display: block;
}

.jioflight {
  background: #df242a;
}

.ontatrip,
.aamacure,
.myfurever,
.lmcalert,
.rotary,
.academia {
  background: #fff;
}

.rotary .project-logo {
  padding: 0.35rem;
}

.page-intro {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.talk-copy {
  margin-bottom: 3rem;
  font-size: 1.1875rem;
  line-height: 1.625;
}

.talk-copy p {
  margin: 0;
}

.talk-copy p + p {
  margin-top: 1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.25rem;
}

.contact-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 4px;
}


.site-footer {
  max-width: var(--site-width);
  margin-inline: auto;
  padding: 0 2rem 2.5rem;
}

.site-footer nav {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--muted);
  text-decoration: none;
}

.site-footer svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.error-page {
  min-height: calc(100vh - 4rem);
  display: grid;
  align-content: center;
}

.error-page .page-header {
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.error-code {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.error-link {
  width: fit-content;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--link-hover);
    text-decoration-color: var(--link-hover);
  }

  .work-row:hover h2 {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .project-visual {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .work-row:hover .project-visual {
    box-shadow: 0 8px 20px rgba(29, 38, 55, 0.09);
    transform: translateY(-2px);
  }
}

@media (max-width: 639px) {
  .site-nav {
    padding: 1rem 1.25rem 0;
  }

  .nav-row {
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
  }

  .nav-links {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }

  .mobile-menu {
    display: none;
  }

  .page-shell {
    padding: 2.5rem 1.25rem 2rem;
  }

  .page-header {
    margin-bottom: 3rem;
  }

  .work-row {
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 1rem;
  }

  .project-visual {
    width: 92px;
    height: 58px;
  }

  .site-footer {
    padding-inline: 1.25rem;
  }
}

@media (max-width: 380px) {
  .nav-links {
    justify-content: space-between;
    gap: 0;
  }

  .work-row {
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 0.75rem;
  }

  .project-visual {
    width: 78px;
    height: 49px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
