.hero {
  min-height: calc(100vh - 82px);
  max-width: var(--max-width);
  margin: auto;
  padding: 25px 2.5vw 35px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  padding-left: 1vw;
  z-index: 2;
}

.eyebrow {
  font-size: clamp(13px, 1.2vw, 18px);
  letter-spacing: .25em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3rem, 7.3vw, 6rem);
  font-weight: 800;
  letter-spacing: -.065em;
}

.hero-subtitle {
  font-size: clamp(14px, 1.35vw, 19px);
  letter-spacing: .2em;
  margin-top: 18px;
}

.hero-description {
  max-width: 470px;
  margin: 25px 0;
  color: #454545;
  line-height: 1.55;
  font-size: 15px;
}

.feature-row {
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 28px 0;
}

.feature {
  padding: 15px 9px;
  text-align: center;
  border-right: 1px solid #ddd;
}

.feature:last-child {
  border-right: 0;
}

.feature strong,
.feature span {
  display: block;
}

.feature strong {
  font-size: 10px;
  margin-bottom: 7px;
}

.feature span {
  font-size: 9px;
  color: #666;
  text-transform: uppercase;
}

/* ==========================================
   MAKE IT YOURS (FULL WIDTH PROCESS SECTION)
   ========================================== */

.make-it-yours-wrapper {
  background-color: var(--accent-soft);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  width: 100%;
}

.make-it-yours-section {
  border-top: 0;
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 55px;
  flex-wrap: wrap;
}

.process-header-copy {
  max-width: 620px;
}

.process-header-desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.65;
  color: #555;
}

.process-header-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.process-action-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: #888;
  text-transform: uppercase;
}

.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 34px 26px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translate(-4px, -4px);
  border-color: var(--black);
  box-shadow: 6px 6px 0px var(--black);
}

.process-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--black);
}

.process-card-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.process-step-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.process-card-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.35;
}

.process-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
}

.hero-visual {
  height: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

/* ==========================================
   HERO SLIDE UP ENTRANCE ANIMATIONS
   ========================================== */

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-subtitle,
.hero-copy .hero-description,
.hero-copy .feature-row,
.hero-copy .hero-process,
.hero-copy .btn,
.hero-visual {
  opacity: 0;
  animation: fadeInUpSnappy 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-copy .eyebrow {
  animation-delay: 0.05s;
}

.hero-copy h1 {
  animation-delay: 0.15s;
}

.hero-copy .hero-subtitle {
  animation-delay: 0.25s;
}

.hero-copy .hero-description {
  animation-delay: 0.35s;
}

.hero-copy .feature-row {
  animation-delay: 0.45s;
}

.hero-copy .hero-process,
.hero-copy .btn {
  animation-delay: 0.55s;
}

.hero-visual {
  animation-delay: 0.3s;
}

.intro {
  border-top: 0;
}

/* ==========================================
   SECTION HEADINGS SLIDE UP ANIMATION
   ========================================== */

.section h2 {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.section.visible h2 {
  animation: fadeInUpSnappy 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

.section-text {
  max-width: 650px;
  margin-top: 35px;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(9, 9, 9, 0.05);
  background: #e3e3e1;
}

.split-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}



.split-copy p:not(.section-label) {
  margin-top: 30px;
  max-width: 500px;
  color: #555;
  line-height: 1.7;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.craft-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.craft-card:hover {
  transform: translate(-4px, -4px);
  border-color: var(--black);
  box-shadow: 6px 6px 0px var(--black);
}

.craft-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.craft-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.craft-info h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--black);
}

.craft-info p {
  font-size: 15px;
  line-height: 1.65;
  color: #666;
}

.cta-banner {
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  border-top: 2px solid var(--black);
}

.cta {
  text-align: center;
  border-top: 0;
}

.cta h2 {
  color: var(--white);
}

.cta .section-label {
  color: var(--white);
}

.btn-solid-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-solid-white:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
  box-shadow: 4px 4px 0px var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
  box-shadow: 4px 4px 0px var(--white);
}

.cta-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1000px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 35px 4vw 25px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-copy .hero-subtitle {
    order: 3;
  }

  .hero-copy .hero-description {
    order: 4;
  }

  .hero-visual {
    order: 5;
    min-height: auto;
    width: 100%;
    margin: 10px 0 15px;
  }

  .hero-visual img {
    max-height: 520px;
  }

  .hero-copy .feature-row {
    order: 6;
    width: 100%;
  }

  .hero-copy .btn {
    order: 7;
  }

  .make-it-yours-section {
    display: flex;
    flex-direction: column;
  }

  .process-header {
    display: contents;
  }

  .process-header-copy {
    order: 1;
    margin-bottom: 30px;
  }

  .process-cards-grid {
    order: 2;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .process-header-action {
    order: 3;
    margin-top: 30px;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .process-header-action .btn {
    width: 100%;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .craft-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 25px 4vw 20px;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .hero-description {
    margin: 18px 0;
  }

  .feature-row {
    grid-template-columns: repeat(2, 1fr);
    margin: 20px 0;
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n+2) {
    border-bottom: 1px solid #ddd;
  }

  .process-header-copy {
    margin-bottom: 22px;
  }

  .process-header-desc {
    font-size: 14.5px;
    margin-top: 12px;
  }

  .process-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-card {
    padding: 24px 20px;
    gap: 16px;
  }

  .process-header-action {
    margin-top: 22px;
  }

  .section-text {
    margin-top: 20px;
    font-size: 16px;
  }

  .split-section {
    gap: 28px;
  }

  .split-copy p:not(.section-label) {
    margin-top: 16px;
    font-size: 15px;
  }

  .craft-grid {
    margin-top: 28px;
    gap: 16px;
  }

  .craft-card {
    padding: 28px 22px;
  }

  .craft-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
  }

  .cta-actions {
    flex-direction: column;
    margin-top: 25px;
  }

  .btn {
    width: 100%;
  }
}