:root {
  --accent: rgb(101, 181, 184);
  --accent-deep: #224855;
  --ink: #101418;
  --works-bg: #f4f9fa;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  transition-behavior: allow-discrete;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.45;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wds-container {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

.wds-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.wds-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  position: relative;
}

.wds-brand {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
}

.wds-brand span {
  color: #fff;
  font-weight: 700;
}

.wds-nav {
  display: flex;
  gap: 1.2rem;
}

.wds-nav a {
  color: #fff;
  font-weight: 300;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.wds-nav a:hover {
  border-color: #fff;
}

.wds-nav-toggle,
.wds-nav-toggle-label {
  display: none;
}

@media (max-width: 767px) {
  .wds-nav-toggle-label {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.28rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
  }

  .wds-nav-toggle-label span {
    width: 1.2rem;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.26s ease, opacity 0.26s ease;
  }

  .wds-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 13rem;
    border-radius: 0.75rem;
    padding: 0.75rem;
    display: grid;
    gap: 0.4rem;
    background: rgba(16, 20, 24, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .wds-nav a {
    display: block;
    padding: 0.3rem 0.2rem;
    border-bottom: 0;
  }

  .wds-nav-toggle:checked ~ .wds-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .wds-nav-toggle:checked + .wds-nav-toggle-label span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .wds-nav-toggle:checked + .wds-nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .wds-nav-toggle:checked + .wds-nav-toggle-label span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.wds-chip {
  background: var(--accent);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.22rem 1rem;
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  max-width: max-content;
  margin: 0;
}

.wds-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 0.75rem;
  padding: 0.2rem 1rem;
  line-height: 1.15;
  font-size: 1rem;
  display: inline-block;
  margin-top: auto;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.wds-outline:hover {
  border-color: var(--accent-deep);
  background: var(--accent-deep);
  color: #fff;
  transform: rotate(-2deg) translateY(-1px);
}

.wds-hero {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;
}

.wds-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
}

.wds-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  color: #fff;
  padding-bottom: 7rem;
}

.wds-hero h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 400;
  text-shadow: 3px 0 0 rgba(0, 0, 0, 0.25);
}

.wds-hero p {
  margin: 0;
  font-weight: 300;
  font-size: 1.125rem;
}

.wds-skills {
  padding: 1.25rem 0 4rem;
  overflow-x: clip;
}

.wds-skill-row.split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.wds-skill-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 300;
  align-items: center;
}

.wds-skill-group span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  display: inline-block;
}

.dot-red { background: #f39ca0; }
.dot-cyan { background: #8adfd8; }
.dot-ruby { background: #e14343; }
.dot-black { background: #111; }
.dot-blue { background: #40bdf0; }
.dot-green { background: #06d17f; }
.dot-emerald { background: #42b883; }
.dot-sea { background: #5e8e3e; }
.dot-deep { background: #0b4d6c; }
.dot-indigo { background: #5c59e4; }

.wds-sigil {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.wds-sigil img {
  width: 120px;
  height: 120px;
}

.wds-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 0 5.75rem;
  align-items: start;
}

.wds-about-copy.left-col {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.wds-about-social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.wds-about-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.left-col h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 400;
}

.wds-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.wds-about-photo {
  width: 100%;
  max-width: 200px;
  margin-bottom: 1.5rem;
}

.wds-about-photo img {
  width: 200px;
  height: 200px;
  border-radius: 999px;
  object-fit: cover;
}

.right-col p {
  margin: 0 0 1.2rem;
  max-width: 55ch;
}

.wds-work-grid-wrap {
  background: var(--works-bg);
  padding: 7rem 0;
}

.wds-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "chip title"
    ". copy";
  gap: 3rem;
  margin-bottom: 1rem;
}

.wds-section-head .wds-chip {
  grid-area: chip;
}

.wds-section-head h2 {
  grid-area: title;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--accent);
}

.wds-section-head h2 span {
  color: #224855;
}

.wds-section-head p {
  margin: 0.8rem 0 0;
  grid-area: copy;
  max-width: 35ch;
}

.wds-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.wds-card {
  padding-top: 4rem;
}

.wds-card-image {
  display: block;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  height: 30vh;
}

.wds-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wds-card:hover .wds-card-image img {
  transform: scale(1.08);
}

.wds-card-icon {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.wds-card-icon img {
  width: 1.35rem;
  height: 1.35rem;
  transition: opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1), transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  will-change: opacity, transform;
}

.wds-card-icon .icon-eye {
  opacity: 0;
  transform: translateY(8px) scale(0.9);
}

.wds-card:hover .wds-card-icon .icon-arrow {
  opacity: 0;
  transform: translateY(-8px) scale(0.9);
}

.wds-card:hover .wds-card-icon .icon-eye {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wds-card:hover .wds-card-icon {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.wds-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2.5rem;
}

.wds-card-meta h3 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 500;
}

.wds-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 6rem 0 6.5rem;
}

.wds-contact-primary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
}

.wds-contact-goals {
  align-self: start;
}

.wds-contact h2,
.wds-contact h3 {
  margin: 0;
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
}

.wds-contact ul {
  margin: 1.25rem 0 0;
  padding-left: 1rem;
}

.wds-contact li {
  margin-bottom: 0.85rem;
}

.wds-footer {
  padding: 4.5rem 0;
  background: linear-gradient(90deg, rgba(101, 181, 184, 0.95), rgba(255, 255, 255, 0.95));
}

.wds-footer-inner {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr 1fr;
  gap: 2rem;
  align-items: center;
}

.wds-footer-title {
  margin: 0;
  font-size: 3rem;
  font-weight: 350;
}

.wds-footer-title span {
  color: #fff;
  font-weight: 700;
}

.wds-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.wds-footer-nav a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wds-footer-nav a:hover {
  color: var(--accent-deep);
}

.wds-footer-exp h3 {
  margin: 0 0 0.8rem;
  font-size: 2.2rem;
  font-weight: 400;
}

.wds-footer-exp p {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.wds-footer-links {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.wds-footer-links .pill {
  border: 2px solid var(--accent-deep);
  border-radius: 0.75rem;
  padding: 0.18rem 1rem;
  font-size: 0.95rem;
  min-width: 19rem;
  text-align: center;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, color 0.28s ease;
}

.wds-footer-links .pill:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: rotate(-2deg) translateY(-1px);
}

.wds-footer-links .social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}

.wds-footer-links .social img {
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0.8;
}

.wds-footer-links .social:hover {
  color: var(--accent-deep);
}

.wds-about-page {
  padding: 4rem 0;
}

.wds-about-page h2 {
  border-bottom: 4px solid rgba(101, 181, 184, 0.5);
  padding-bottom: 0.8rem;
}

.wds-two-col {
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.wds-image-row {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wds-image-row img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}

.works-page-grid {
  padding: 1rem 0 4rem;
}

.wds-hero--works {
  overflow: hidden;
}

.wds-hero--works .wds-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.wds-hero--works .wds-overlay {
  z-index: 1;
}

.wds-hero--works .wds-hero-inner {
  z-index: 2;
}

.wds-contact-soft {
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 20, 24, 0.08);
}

.wds-work-content,
.wds-page-content {
  padding: 4rem 0;
}

.wds-work-content h2 {
  border-bottom: 4px solid rgba(101, 181, 184, 0.5);
  padding-bottom: 0.8rem;
}

.wds-skill-pills {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.wds-skill-pills span {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
}

.wds-archive-list {
  display: grid;
  gap: 1.25rem;
}

.wds-archive-item {
  border: 1px solid rgba(16, 20, 24, 0.12);
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
}

.wds-archive-item h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.wds-archive-item p {
  font-size: 1rem;
}

.wds-archive-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.5rem;
}

.wds-archive-pagination a,
.wds-archive-pagination span {
  min-width: 2rem;
  text-align: center;
  border: 1px solid rgba(16, 20, 24, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
}

.wds-archive-pagination a[aria-current="page"] {
  border-color: var(--accent-deep);
  background: var(--accent-deep);
  color: #fff;
}

.wds-reveal {
  opacity: 0;
  transform: translateX(72px);
  transition: transform 0.65s ease-out, opacity 0.65s ease-out;
}

.wds-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.wds-work-grid .wds-card:nth-child(2) {
  transition-delay: 0.08s;
}

.wds-work-grid .wds-card:nth-child(3) {
  transition-delay: 0.14s;
}

.wds-work-grid .wds-card:nth-child(4) {
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .wds-outline,
  .wds-card-image img,
  .wds-card-icon,
  .wds-card-icon img,
  .wds-footer-links .pill {
    transition: none;
  }

  .wds-outline:hover,
  .wds-footer-links .pill:hover,
  .wds-card:hover .wds-card-image img,
  .wds-card:hover .wds-card-icon,
  .wds-card:hover .wds-card-icon .icon-arrow,
  .wds-card:hover .wds-card-icon .icon-eye {
    transform: none;
  }
}

@media (max-width: 1200px) {
  .wds-footer-links .pill {
    min-width: 15rem;
  }
}

@media (min-width: 768px) {
  .wds-hero {
    min-height: 60vh;
  }

  .wds-hero h1 {
    font-size: 3.75rem;
  }

  .wds-hero p {
    font-size: 1.875rem;
  }

  .wds-card-image {
    height: 35vh;
  }
}

@media (min-width: 1024px) {
  .wds-hero {
    min-height: 70vh;
  }

  .wds-hero h1 {
    font-size: 8rem;
  }

  .wds-hero p {
    font-size: 1.875rem;
    padding-left: 3rem;
  }

  .wds-card-image {
    height: 40vh;
  }
}

@media (max-width: 1023px) {
  .wds-about,
  .wds-work-grid,
  .wds-contact,
  .wds-footer-inner,
  .wds-two-col,
  .wds-image-row {
    grid-template-columns: 1fr;
  }

  .wds-hero-inner {
    display: grid;
    gap: 0.75rem;
    padding-bottom: 2rem;
  }

  .wds-sigil {
    margin: 0 auto;
    width: 96px;
    height: 96px;
  }

  .wds-sigil img {
    width: 96px;
    height: 96px;
  }

  .wds-skill-group {
    justify-content: space-between;
    font-size: 0.92rem;
  }

  .left-col {
    min-height: 0;
    justify-content: flex-start;
    gap: 1.25rem;
  }

  .wds-about-social {
    min-height: 0;
    justify-content: flex-start;
    gap: 1rem;
  }

  .wds-about-links {
    min-height: 0;
    gap: 1rem;
  }

  .wds-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .wds-contact {
    padding: 4rem 0 4.5rem;
  }

  .wds-contact-primary {
    gap: 1.25rem;
  }

  .wds-contact h2,
  .wds-contact h3 {
    font-size: 2.25rem;
  }

  .wds-footer-links {
    justify-items: start;
  }

  .wds-footer-links .pill {
    min-width: 0;
    width: 100%;
    max-width: 22rem;
  }
}

@media (max-width: 767px) {
  .wds-skills {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    margin-bottom: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .wds-skill-row.split {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    min-width: 0;
  }

  .wds-skills .wds-container {
    width: max-content;
    margin: 0;
    padding: 0 0.75rem;
  }

  .wds-skill-group {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.85rem;
    font-size: 0.9rem;
  }

  .wds-skill-group span {
    white-space: nowrap;
  }

  .wds-sigil {
    display: none;
  }

  .wds-section-head {
    grid-template-columns: 1fr;
    grid-template-areas:
      "chip"
      "title"
      "copy";
  }

  .wds-section-head p {
    max-width: 100%;
  }
}



