:root {
  --bg: #131313;
  --bg-alt: #1c1c1c;
  --bg-card: #1c1c1c;
  --text: #f0f0f0;
  --text-muted: #888888;
  --border: #2a2a2a;
  --tag-bg: #252525;
  --tag-text: #999999;
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}

.alt-bg {
  background: var(--bg-alt);
}

/* -- Header -- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  /*border-bottom: 1px solid var(--border);*/
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.header-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.header-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.header-role {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: var(--text-muted);
  padding: 5px 7px;
  transition: color 0.2s;
}

.lang-btn.active {
  color: var(--text);
}

.lang-sep {
  font-size: 11px;
  color: var(--border);
  user-select: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.header-nav-link:hover,
.header-nav-link.active {
  color: var(--text);
}

/* -- Hero -- */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-shopify-logo {
  width: 100%;
  max-width: 280px;
  justify-self: center;
  color: var(--text-muted);
  pointer-events: none;
  order: 2;
}

.hero-shopify-logo path {
  stroke-width: 0.5;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.3px;
  margin-bottom: 28px;
}

.hero-about {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.hero-tags {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-link-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cv-dropdown {
  position: relative;
  display: inline-flex;
}

.hero-link-cv {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  transition: text-decoration-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-link-cv:hover {
  text-decoration-color: var(--text-muted);
}

.cv-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  overflow: hidden;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cv-dropdown.open .cv-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cv-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}

.cv-menu a:hover {
  background: var(--tag-bg);
}

.hero-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s;
}

.hero-link-icon:hover {
  background: var(--tag-bg);
}

.hero-link-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* -- Section label -- */
.work-label {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.work-label h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.work-label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* -- Grid -- */
.projects {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow: hidden;
}

.tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.tag:not(:last-child)::after {
  content: ",\00a0";
}

.card-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.2;
}

.card-preview {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--tag-bg);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* -- Carousel -- */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--tag-bg);
  /* Vertical gestures stay with the page; horizontal ones are ours. */
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-track img {
  -webkit-user-drag: none;
  user-select: none;
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  flex-shrink: 0;
  cursor: zoom-in;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
  color: var(--text);
}

.carousel:hover .carousel-btn {
  opacity: 1;
}

/* Touch devices never hover, so the arrows would otherwise be invisible.
   Swiping is the primary gesture there; these are the visible fallback. */
@media (hover: none) {
  .carousel-btn {
    opacity: 0.85;
    width: 34px;
    height: 34px;
  }
}

.carousel-btn:hover {
  border-color: var(--text-muted);
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.carousel-dot.active {
  background: #fff;
  width: 16px;
}


.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-text strong {
  color: var(--text);
  font-weight: 600;
}

.card-footer {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
}

.btn-primary:hover {
  opacity: 0.75;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
}

/* -- Demo button tooltip -- */
.btn-demo-wrap {
  position: relative;
  display: inline-flex;
}

.btn-demo-wrap .btn-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}

.btn-demo-wrap .btn-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text);
}

.btn-demo-wrap:hover .btn-tooltip {
  opacity: 1;
}

/* -- Lightbox -- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  padding: 32px;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.2s;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-btn.prev {
  left: 20px;
}

.lightbox-btn.next {
  right: 20px;
}

.lightbox-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* -- Toast -- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 999;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* -- Footer -- */
footer {
  /*border-top: 1px solid var(--border);*/
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text);
}

/* -- Services -- */
.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 32px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 48px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.service-row:first-of-type {
  border-top: 1px solid var(--border);
}

.service-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: right;
  max-width: 420px;
}

/* -- Homepage Projects -- */
.hp-projects {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 48px 96px;
}

.work-label-see-all {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  white-space: nowrap;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.work-label-see-all:hover {
  color: var(--text);
  text-decoration-color: var(--text-muted);
}

/* -- Work Index -- */
.work-index {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 96px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.work-index-title {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--text);
}

.work-item {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0;
}

.work-item:nth-child(even) {
  grid-template-columns: 1fr 2fr;
}

.work-item:nth-child(even) .work-item-img {
  order: 2;
}

.work-item:nth-child(even) .work-item-info {
  order: 1;
}

.work-item-img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--tag-bg);
}

.work-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: opacity 0.3s;
}

.work-item-img:hover img {
  opacity: 0.85;
}

.work-item-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-item-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--text);
}

.work-item-keys {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.work-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.work-item-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: text-decoration-color 0.2s;
}

.work-item-link:hover {
  text-decoration-color: var(--text-muted);
}

/* -- Project Page -- */
.project-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 48px 96px;
}

.project-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 24px;
}

.project-meta-left {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 500;
}

.project-meta-left a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.project-meta-left a:hover {
  color: var(--text);
}

.project-meta-right {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.65;
  max-width: 350px;
  flex-shrink: 0;
}

.project-carousel-wrap {
  width: 100%;
  margin-bottom: 32px;
}

.project-heading {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
}

.project-content-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.project-col-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.project-col-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  text-align: justify;
}

.project-col-text:last-child {
  margin-bottom: 0;
}

.project-tools-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.project-tools-list li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.project-tools-list li::before {
  content: "·";
  position: absolute;
  left: 0;
}

.project-cta {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  gap: 8px;
}

.card-title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.card-title a:hover {
  opacity: 0.7;
}

/* -- More Projects -- */
.more-projects {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 48px;
  position: relative;
  isolation: isolate;
}

.more-projects::before {
  content: '';
  position: absolute;
  inset: 0;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  background: var(--bg-alt);
  z-index: -1;
}

.more-projects-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.more-projects-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--text);
}

.more-projects-see-all {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.more-projects-see-all:hover {
  color: var(--text);
  text-decoration-color: var(--text-muted);
}

.more-projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.more-project-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}

.more-project-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--tag-bg);
}

.more-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: opacity 0.3s;
}

.more-project-card:hover .more-project-img img {
  opacity: 0.85;
}

.more-project-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  line-height: 1.2;
}

.more-project-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* -- Contact -- */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  align-content: center;
}

.contact-title {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  background: var(--tag-bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.4;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}

.form-error {
  font-size: 13px;
  color: var(--text-muted);
  display: none;
  line-height: 1.6;
  text-align: center;
}

.form-error.visible {
  display: block;
}

.contact-success {
  display: none;
  grid-column: 2;
  padding-top: 8px;
}

.contact-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -- Responsive -- */
@media (max-width: 900px) {
  header {
    padding: 0 24px;
  }

  .header-divider,
  .header-meta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 0;
    align-items: center;
    align-content: center;
    min-height: calc(100vh - 64px);
  }

  .hero-shopify-logo {
    position: absolute;
    width: 70%;
    max-width: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    order: 0;
    z-index: -1;
  }

  .work-label {
    padding-left: 24px;
    padding-right: 24px;
  }

  .projects {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
  }

  .services {
    padding: 0 24px;
    min-height: calc(100vh - 64px);
  }

  .service-row {
    flex-direction: column;
    gap: 6px;
  }

  .service-desc {
    text-align: left;
    max-width: none;
  }

  .hp-projects {
    padding: 60px 24px 60px;
  }

  .work-index {
    padding: 48px 24px 60px;
  }

  .work-item,
  .work-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .work-item .work-item-img,
  .work-item:nth-child(even) .work-item-img {
    order: 1;
  }

  .work-item .work-item-info,
  .work-item:nth-child(even) .work-item-info {
    order: 2;
  }

  .project-page {
    padding: 32px 24px 60px;
  }

  .project-meta-row {
    flex-direction: column;
    gap: 12px;
  }

  .project-meta-right {
    text-align: left;
    max-width: none;
  }

  .project-content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .more-projects {
    padding: 48px 24px 60px;
  }

  .more-projects-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .contact-section {
    padding: 0 24px;
    min-height: calc(100vh - 64px);
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-success {
    grid-column: 1;
  }
}

/* -- Honeypot: present in the DOM, unreachable for humans -- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
