/* ================= GLOBAL ================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #FFFFFF;
  color: #2B2B2B;
  padding-top: 120px;
  overflow-x: hidden;
}


/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

::selection {
  background: #2B2B2B;
  color: #fff;
}

.container {
  padding: 0 clamp(20px, 4vw, 52px);
  max-width: 100%;
  margin: 0;
}


/* ================= CUSTOM CURSOR ================= */

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #2B2B2B;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, opacity 0.15s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid #2B2B2B;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
  opacity: 0.5;
}

.cursor-ring.hovering {
  width: 60px;
  height: 60px;
  opacity: 0.3;
  border-color: #C9735B;
}

.cursor-dot.hovering {
  transform: scale(2.5);
  background: #C9735B;
}


/* ================= PAGE LOADER ================= */

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2B2B2B;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: loaderSlide 1.2s ease forwards;
}

@keyframes loaderSlide {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}


/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 0;
  z-index: 999;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header,
.header * {
  color: white;
  mix-blend-mode: difference;
}

/* LEFT SIDE */
div.logo {
  display: flex;
}

.logo h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.logo p {
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-left: 25px;
}

/* RIGHT SIDE NAV */

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav a:hover::after {
  width: 100%;
  left: 0;
}

.nav a:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}


/* ================= HERO ================= */

.hero {
  padding: 0 0 40px 0;
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ================= DRAWING TOOL ================= */

.draw-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.draw-canvas.active {
  pointer-events: auto;
  cursor: crosshair;
}

.draw-toolbar {
  position: absolute;
  bottom: calc(30px + 1em);
  left: clamp(20px, 4vw, 52px);
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 6px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.draw-color {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.draw-color:hover {
  transform: scale(1.15);
}

.draw-color.active {
  border-color: #999;
  transform: scale(1.15);
}

.draw-undo {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s, background 0.2s;
  border-radius: 20px;
}

.draw-undo:hover {
  color: #2B2B2B;
}

.draw-info {
  position: relative;
  display: flex;
  align-items: center;
}

.draw-info-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 12px;
  font-style: italic;
  color: #999;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.draw-info-icon:hover {
  color: #2B2B2B;
  border-color: #2B2B2B;
}

.draw-info-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #2B2B2B;
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 10px;
  width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.draw-info:hover .draw-info-tooltip {
  opacity: 1;
  pointer-events: auto;
}

.hero-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(24px, 5vw, 70px);
}

/* IMAGE — parallax container */

.hero-image {
  will-change: transform;
  position: relative;
}

.hero-image img {
  width: clamp(250px, 28vw, 370px);
  max-width: 100%;
  height: auto;
}

/* Cat SVG */
.hero-svg {
  width: clamp(187px, 24vw, 500px);
  max-width: 100%;
  height: auto;
}

#pupil-right,
#pupil-left {
  will-change: transform;
}

#cat-tail {
  will-change: transform;
}

@keyframes tailSway {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(3deg); }
  30%  { transform: rotate(-2.5deg); }
  45%  { transform: rotate(2deg); }
  60%  { transform: rotate(-1.5deg); }
  75%  { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

#cat-tail.swaying {
  animation: tailSway 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RIGHT CONTENT */

.hero-content {
  max-width: 100%;
  will-change: transform;
}

/* Staggered load reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.45em, 3.1vw, 4em);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 30px;
  margin-top: 0.5em;
}

/* TAGS */

.hero-tags {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(40px, 7vw, 100px);
  flex-wrap: wrap;
}

.hero-tags span {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(10px, 1.1vw, 20px);
  font-weight: 400;
  padding: 2px 12px;
  background: #2B2B2B;
  color: #fff;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.hero-tags span:not(.diamond):hover {
  background: #C9735B;
}

.hero-tags .diamond {
  background: none;
  color: #2B2B2B;
  padding: 0;
  font-size: 8px;
}

/* CTA */

.hero-actions {
  display: flex;
  gap: 40px;
}

.hero-actions a {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(13px, 1.4vw, 24px);
  font-weight: 500;
  text-decoration: none;
  color: #2B2B2B;
  transition: letter-spacing 0.4s ease;
}

.hero-actions a::before {
  content: "[  ";
}

.hero-actions a::after {
  content: "  ]";
}

.hero-actions a:hover {
  letter-spacing: 2px;
}


/* ================= INQUIRY MODAL ================= */

.inquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.inquiry-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.inquiry-modal {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  padding: 44px 40px 36px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 2px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.inquiry-overlay.open .inquiry-modal {
  transform: translateY(0) scale(1);
}

.inquiry-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: #888;
  cursor: none;
  transition: all 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #2B2B2B;
}

/* Steps */
.inquiry-step {
  display: none;
}

.inquiry-step.active {
  display: block;
  animation: inquiryFadeIn 0.35s ease;
}

@keyframes inquiryFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.inquiry-label {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}

.inquiry-step h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2B2B2B;
  margin-bottom: 28px;
  line-height: 1.4;
}

/* Option buttons */
.inquiry-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inquiry-opt {
  background: rgba(0, 0, 0, 0.03);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: #2B2B2B;
  text-align: left;
  cursor: none;
  transition: all 0.2s ease;
}

.inquiry-opt:hover {
  background: rgba(0, 0, 0, 0.06);
}

.inquiry-opt.selected {
  background: #2B2B2B;
  color: #fff;
  border-color: #2B2B2B;
}

/* Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inquiry-form input,
.inquiry-form textarea {
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: #2B2B2B;
  background: rgba(0, 0, 0, 0.03);
  outline: none;
  transition: all 0.2s;
  resize: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #bbb;
}

.inquiry-submit {
  background: #2B2B2B;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: none;
  transition: all 0.25s ease;
  margin-top: 4px;
}

.inquiry-submit:hover {
  background: #1a1a1a;
  transform: scale(1.01);
}

/* Navigation */
.inquiry-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.inquiry-back,
.inquiry-next {
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: #2B2B2B;
  cursor: none;
  transition: all 0.2s;
}

.inquiry-back:disabled,
.inquiry-next:disabled {
  opacity: 0.25;
  cursor: default;
}

.inquiry-back:not(:disabled):hover,
.inquiry-next:not(:disabled):hover {
  background: rgba(0, 0, 0, 0.08);
}

.inquiry-progress {
  flex: 1;
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.inquiry-progress-fill {
  height: 100%;
  width: 25%;
  background: #2B2B2B;
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Pricing note */
.inquiry-pricing-note {
  margin-top: 28px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.025);
  border-radius: 12px;
}

.inquiry-pricing-note p {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
}

/* Done state */
.inquiry-done {
  text-align: center;
  padding: 24px 0;
}

.inquiry-done h3 {
  margin-bottom: 12px;
}

.inquiry-done p {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .inquiry-modal {
    width: 94%;
    padding: 36px 24px 28px;
    border-radius: 16px;
  }

  .inquiry-step h3 {
    font-size: 16px;
  }

  .inquiry-opt {
    border-radius: 10px;
  }
}


/* ================= PROJECTS ================= */

.projects-section {
  padding-top: 180px;
  padding-bottom: 35%;
}

.project-card {
  width: clamp(280px, 26vw, 357px);
  height: clamp(210px, 19vw, 266px);
  background: #2B2B2B;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease;
}

.project-item:hover .project-card {
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.carousel-track {
  margin-top: 74px;
  display: flex;
  flex-direction: row;
  gap: 7px;
  width: max-content;
}

.carousel {
  width: 100%;
  overflow: hidden;
}

.project-name {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  overflow: hidden;
  white-space: wrap;
  width: 60%;
  font-weight: 500;
}

.project-year {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-align: right;
  font-weight: 500;
}

.project-label {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 50px;
  margin-bottom: 15px;
}

/* Hide by default */
.project-name,
.project-year {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show when hovering over the card */
.project-item:hover .project-name,
.project-item:hover .project-year {
  opacity: 1;
  transform: translateY(0);
}

/* Filter buttons */
.project-filters {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  margin-top: 10%;
  padding-left: clamp(20px, 4vw, 52px);
}

.filter-btn {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 800;
  padding: 0;
  border: none;
  background: transparent;
  color: #D9D9D9;
  cursor: none;
  transition: color 0.4s ease;
}

.filter-btn:hover {
  color: #999;
}

.filter-btn.active {
  color: #2B2B2B;
}

.filter-separator {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 800;
  color: #D9D9D9;
  margin: 0 8px;
  user-select: none;
}

.filter-year {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2B2B2B;
  margin-left: auto;
  margin-right: clamp(20px, 4vw, 52px);
  align-self: flex-end;
  padding-bottom: 8px;
}

.project-item.filtered-out {
  display: none;
}


/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 160px 0 120px;
  position: relative;
  z-index: 1;
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.about-left {
  flex: 1;
}

.about-left h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.3em, 2.2vw, 2em);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 52px;
}

.about-left p {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.3em, 2.2vw, 2em);
  font-weight: 400;
  line-height: 1.3;
  color: #999;
}

.about-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-right img {
  width: 100%;
  max-width: 475px;
  height: auto;
}


/* ================= QUOTE SECTION ================= */

.quote-section {
  padding: 60px 0 30em;
  overflow: hidden;
}

.quote-text {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(31px, 3.5vw, 51px);
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-text .highlight {
  color: #fff;
  padding: 6px 0 6px 20px;
  display: block;
  position: relative;
  width: calc(100vw - clamp(20px, 4vw, 52px) * 2);
  box-sizing: border-box;
  background: linear-gradient(to right, #2B2B2B var(--fill, 0%), transparent var(--fill, 0%));
}


/* ================= PROCESS SECTION ================= */

.process-section {
  padding: 120px 0 12em;
}

.process-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2em, 3.8vw, 3.4em);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 48px;
}

.process-cards {
  display: flex;
  gap: 16px;
}

.process-card {
  flex: 1;
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.process-card.dark {
  background: #2B2B2B;
  color: #fff;
}

.process-card.light {
  background: #F5F5F5;
  color: #2B2B2B;
}

.process-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 4.5em;
  font-weight: 400;
  text-align: right;
  display: block;
  margin-bottom: 20px;
}

.process-desc {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  text-align: right;
  max-width: 220px;
  margin-left: auto;
  margin-bottom: auto;
}

.process-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 30px;
  text-align: left;
}


/* ================= FOOTER ================= */

.footer {
  padding: 120px 0 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 60px;
  border-top: 1px solid rgba(43, 43, 43, 0.1);
  padding-top: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-left a,
.footer-left span {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2B2B2B;
  text-decoration: none;
}

.footer-left a:hover {
  opacity: 0.6;
}

.footer-center a {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2B2B2B;
  text-decoration: none;
}

.footer-center a:hover {
  opacity: 0.6;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-right a,
.footer-right span {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2B2B2B;
  text-decoration: none;
}

.footer-right a:hover {
  opacity: 0.6;
}

/* Big "Let's talk" — magnetic */

.footer-big {
  padding: 60px 0 40px 0;
  overflow: hidden;
  cursor: none;
}

.footer-big h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 16.6vw;
  font-weight: 700;
  line-height: 0.85;
  color: #2B2B2B;
  white-space: nowrap;
  text-align: center;
  transition: color 0.5s ease, -webkit-text-stroke-color 0.5s ease, transform 0.2s ease-out;
  will-change: transform;
}

.footer-big:hover h2 {
  color: transparent;
  -webkit-text-stroke: 2px #2B2B2B;
}

/* Scroll reveal generic */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: 0.15s; }
.scroll-reveal.delay-2 { transition-delay: 0.3s; }


/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-right {
    justify-content: flex-start;
  }

  .process-cards {
    flex-wrap: wrap;
  }

  .process-card {
    flex: 1 1 calc(50% - 8px);
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 90px;
  }

  .header {
    padding: 20px 0;
  }

  .logo h1 {
    font-size: 18px;
  }

  .logo p {
    display: none;
  }

  .hero {
    padding: 30px 0 80px 0;
    min-height: calc(100vh - 120px);
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 20px;
  }

  .project-card {
    width: 280px;
    height: 210px;
  }

  .process-card {
    flex: 1 1 100%;
    min-height: 300px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-right {
    align-items: flex-start;
  }
}
