:root {
  --home-bg: #faf9f5;
  --home-surface: #ffffff;
  --home-soft: #f3eee6;
  --home-text: #141413;
  --home-muted: #5f5c56;
  --home-line: #ddd4ca;
  --home-accent: #cc785c;
  --home-accent-dark: #b9654a;
  --home-dark: #252320;
  --home-footer: #181715;
  --home-radius: 14px;
  --site-bg: var(--home-bg);
  --site-surface: var(--home-surface);
  --site-text: var(--home-text);
  --site-muted: var(--home-muted);
  --site-line: var(--home-line);
  --site-accent: var(--home-accent);
  --site-footer: var(--home-footer);
  --site-content: 1440px;
}

html {
  scroll-behavior: smooth;
}

body.home-body {
  margin: 0;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: "Noto Sans SC", system-ui, sans-serif;
  overflow-x: clip;
}

body.home-body * {
  box-sizing: border-box;
}

body.home-body img {
  display: block;
  max-width: 100%;
}

body.home-body a {
  color: inherit;
  text-decoration: none;
}

body.home-body button,
body.home-body a {
  -webkit-tap-highlight-color: transparent;
}

body.home-body button,
body.home-body .button,
body.home-body .text-link,
body.home-body .category-card__image {
  cursor: pointer;
}

.home-page {
  width: 100% !important;
  min-height: 100vh;
  margin: 0 !important;
  overflow: clip !important;
  background: var(--home-bg);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--home-accent);
  font-family: Manrope, sans-serif;
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.hero {
  display: flex;
  align-items: flex-start;
  padding-block: clamp(72px, 7vw, 112px) 48px;
}

.hero__main {
  display: grid;
  grid-template-columns: minmax(410px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(64px, 7vw, 112px);
}

.hero__copy {
  max-width: 550px;
}

.hero__media {
  display: grid;
  min-width: 0;
  gap: clamp(16px, 1.5vw, 24px);
}

.hero__title {
  max-width: 12ch;
  margin: 0;
  font-size: var(--type-page-title);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.hero__description {
  max-width: 530px;
  margin: 28px 0 0;
  color: var(--home-muted);
  font-size: var(--type-lead);
  line-height: 1.72;
}

.hero__actions,
.home-cta__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--type-ui);
  font-weight: 600;
  line-height: 1;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.button--primary {
  border-color: var(--home-accent);
  background: var(--home-accent);
  color: #ffffff !important;
}

.button--primary:hover {
  border-color: var(--home-accent-dark);
  background: var(--home-accent-dark);
}

.button--outline {
  border-color: rgba(204, 120, 92, 0.55);
  color: var(--home-accent) !important;
}

.button--outline:hover {
  border-color: var(--home-accent);
  background: rgba(204, 120, 92, 0.06);
}

.button--light {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--home-accent) !important;
}

.button--light:hover {
  background: var(--home-soft);
}

.hero__visual {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--home-radius);
  background: var(--home-soft);
}

.hero__secondary {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(16px, 1.5vw, 24px);
  aspect-ratio: 3.35 / 1;
}

.hero__secondary-visual {
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-radius);
  background: var(--home-soft);
}

.hero__visual img,
.hero__secondary-visual img,
.brand-entry__visual img,
.process__visual img,
.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual img {
  object-position: 54% center;
}

.hero__capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  list-style: none;
}

.hero__capabilities li {
  display: grid;
  gap: 8px;
  padding: 28px 32px;
  text-align: center;
}

.hero__capabilities li + li {
  border-left: 1px solid var(--home-line);
}

.hero__capabilities strong {
  font-size: 18px;
  font-weight: 600;
}

.hero__capabilities span {
  color: var(--home-muted);
  font-size: var(--type-small);
}

.section {
  padding-block: clamp(88px, 8vw, 144px);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.brand-entry h2,
.home-cta h2 {
  margin: 0;
  font-size: var(--type-section-title);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.16;
}

.section-heading > p:last-child,
.brand-entry__copy > p,
.home-cta__copy > p {
  margin: 24px 0 0;
  color: var(--home-muted);
  font-size: var(--type-body);
  line-height: 1.72;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: clamp(56px, 6vw, 80px);
}

.section-heading--split > div {
  max-width: 780px;
}

.section-heading--split > div > p:last-child {
  margin-top: 24px;
}

.strength {
  background: var(--home-surface);
}

.strength__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.strength__item {
  padding: 44px 28px;
  text-align: center;
}

.strength__item + .strength__item {
  border-left: 1px solid var(--home-line);
}

.strength__item dt {
  font-family: Manrope, "Noto Sans SC", sans-serif;
  font-size: clamp(36px, 3vw, 50px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.strength__item dd {
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: var(--type-ui);
  line-height: 1.5;
}

.categories {
  background: #f3eee5;
}

.categories__featured,
.categories__secondary {
  display: grid;
  gap: 24px;
}

.categories__featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.categories__secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.category-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(18px, 1.5vw, 22px);
  border: 1px solid rgba(216, 207, 196, 0.75);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(50, 42, 33, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover,
  .category-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(50, 42, 33, 0.1);
  }
}

.category-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: var(--home-soft);
}

.category-card--featured .category-card__image {
  aspect-ratio: 16 / 9;
}

.category-card__meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 4px 4px;
}

.category-card__meta h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.35;
}

.category-card__meta p {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: var(--type-ui);
  line-height: 1.7;
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--home-accent) !important;
  font-size: var(--type-ui);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  color: var(--home-accent) !important;
  font-size: var(--type-ui);
  font-weight: 600;
}

.arrow {
  display: inline-block;
  transition: transform 220ms ease;
}

a:hover .arrow,
a:focus-visible .arrow {
  transform: translateX(4px);
}

.image-link img {
  transition: transform 500ms ease;
}

.image-link:hover img,
.image-link:focus-visible img {
  transform: scale(1.025);
}

.brand-entry {
  padding-block: clamp(88px, 7vw, 108px);
  background: var(--home-dark);
  color: #faf9f5;
}

.brand-entry__layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(64px, 7vw, 96px);
}

.brand-entry__copy {
  max-width: 520px;
}

.brand-entry__copy > p {
  color: #c9c5bb;
}

.brand-entry__copy .button {
  margin-top: 36px;
}

.brand-entry__visual {
  position: relative;
  isolation: isolate;
  min-height: clamp(400px, 34vw, 560px);
}

.brand-entry__photo {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--home-radius);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.brand-entry__photo--material {
  top: 6%;
  left: 0;
  width: 57%;
  height: 48%;
  z-index: 1;
}

.brand-entry__photo--structure {
  bottom: 4%;
  left: 10%;
  width: 55%;
  height: 43%;
  z-index: 2;
}

.brand-entry__photo--package {
  top: 0;
  right: 0;
  width: 58%;
  height: 76%;
  z-index: 3;
}

.brand-entry__photo--package img {
  object-position: center 58%;
}

.brand-entry__photo:hover,
.brand-entry__photo:focus-visible {
  z-index: 10;
  transform: translateY(-12px);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.38);
}

.brand-entry__photo:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 5px;
}

.process {
  background: var(--home-soft);
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(64px, 7vw, 112px);
}

.process__visual {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-radius);
  background: #e5ded4;
}

.timeline {
  display: grid;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  min-height: 112px;
  padding-bottom: 28px;
}

.timeline li:not(:last-child)::before {
  position: absolute;
  top: 45px;
  bottom: 0;
  left: 26px;
  width: 1px;
  content: "";
  background: var(--home-line);
}

.timeline__number {
  color: var(--home-accent);
  font-family: Manrope, sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.timeline h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--home-muted);
  font-size: var(--type-ui);
  line-height: 1.7;
}

.home-cta {
  display: flex;
  min-height: 300px;
  align-items: center;
  padding-block: 80px;
  background: var(--home-accent);
  color: #faf9f5;
}

.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}

.home-cta__copy {
  max-width: 820px;
}

.home-cta__copy > p {
  max-width: 720px;
  color: rgba(250, 249, 245, 0.9);
}

.home-cta__actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.text-link--light {
  color: #ffffff !important;
}

.site-footer {
  padding-top: 72px;
  background: var(--home-footer);
  color: #faf9f5;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 80px;
}

.site-footer h2 {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer .site-footer__brand {
  margin-bottom: 16px;
  font-size: 25px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: #c9c5bb;
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
}

.site-footer__grid > div > p {
  max-width: 370px;
  margin: 0;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.site-footer__bottom {
  margin-top: 64px;
  padding-block: 24px 32px;
  border-top: 1px solid rgba(250, 249, 245, 0.24);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 14px;
}

body.home-body :focus-visible {
  outline: 3px solid rgba(204, 120, 92, 0.5);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .hero__main {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    gap: 52px;
  }

  .hero__title {
    font-size: clamp(48px, 5.4vw, 62px);
  }

  .process__layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 56px;
  }

  .site-footer__grid {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .hero__main,
  .brand-entry__layout,
  .process__layout {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .brand-entry__copy,
  .section-heading {
    max-width: 760px;
  }

  .hero__title {
    max-width: 13ch;
  }

  .hero__visual {
    min-height: 520px;
  }

  .strength__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength__item:nth-child(3) {
    border-left: 0;
  }

  .strength__item:nth-child(n + 3) {
    border-top: 1px solid var(--home-line);
  }

  .categories__secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-entry__visual {
    min-height: clamp(400px, 52vw, 560px);
  }

  .process__visual {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .section-heading--split,
  .home-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .home-cta__actions {
    margin-top: 4px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 64px;
  }

  .hero__visual {
    min-height: 400px;
  }

  .hero__capabilities {
    grid-template-columns: 1fr;
  }

  .hero__capabilities li {
    padding: 24px 12px;
  }

  .hero__capabilities li + li {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .categories__featured,
  .categories__secondary {
    grid-template-columns: 1fr;
  }

  .categories__secondary {
    margin-top: 24px;
  }

  .category-card__image,
  .category-card--featured .category-card__image {
    aspect-ratio: 16 / 10;
  }

  .brand-entry__visual {
    min-height: clamp(340px, 78vw, 480px);
  }

  .process__visual {
    min-height: 420px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__grid > div:first-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-block: 56px 32px;
  }

  .hero__main {
    gap: 40px;
  }

  .hero__title {
    max-width: none;
    font-size: var(--type-page-title-mobile);
    line-height: 1.12;
  }

  .hero__description {
    margin-top: 22px;
    font-size: var(--type-body-mobile);
  }

  .hero__actions,
  .home-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .home-cta__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 330px;
    border-radius: 10px;
  }

  .hero__capabilities {
    margin-top: 40px;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading h2,
  .brand-entry h2,
  .home-cta h2 {
    font-size: var(--type-section-title-mobile);
  }

  .section-heading > p:last-child,
  .brand-entry__copy > p,
  .home-cta__copy > p {
    font-size: var(--type-body-mobile);
  }

  .strength__grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .strength__item + .strength__item,
  .strength__item:nth-child(3) {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .strength__item {
    padding: 32px 20px;
  }

  .brand-entry {
    padding-block: 80px;
  }

  .brand-entry__layout,
  .process__layout {
    gap: 48px;
  }

  .brand-entry__visual {
    min-height: 310px;
    border-radius: 10px;
  }

  .process__visual {
    min-height: 320px;
    border-radius: 10px;
  }

  .timeline {
    margin-top: 40px;
  }

  .timeline li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }

  .timeline li:not(:last-child)::before {
    left: 21px;
  }

  .timeline__number {
    font-size: 28px;
  }

  .home-cta {
    min-height: 0;
    padding-block: 72px;
  }

  .home-cta__actions {
    width: 100%;
  }

  .text-link--light {
    justify-content: center;
    padding: 14px;
  }

  .site-footer {
    padding-top: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

}

