/* Adequate Apparel homepage
   Shared navigation, footer, buttons, and animation behavior live in site.css. */

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 64px) 0 72px;
  background:
    radial-gradient(circle at 78% 42%, rgba(201, 168, 76, 0.12), transparent 31%),
    linear-gradient(135deg, #080808 0%, #111111 100%);
}

.home-hero::after {
  position: absolute;
  inset: auto 5% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.42), transparent);
  content: "";
}

.home-hero-watermark {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: max(-80px, -4vw);
  width: min(54vw, 690px);
  max-height: 84%;
  transform: translateY(-50%);
  object-fit: contain;
  opacity: 0.065;
  filter: brightness(8) grayscale(1);
  pointer-events: none;
  user-select: none;
}

.home-hero-content {
  position: relative;
  z-index: 1;
}

.home-hero-tag {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.67);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-hero h1,
.home-section-title,
.service-card h3,
.path-card h3,
.work-overlay h3,
.home-step h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
}

.home-hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(58px, 8.4vw, 106px);
  line-height: 0.94;
}

.home-hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45);
}

.home-hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.home-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button-light {
  background: var(--white);
  color: var(--black);
}

.home-button-light:hover {
  background: #e9e9e9;
}

.home-button-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.home-button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.home-button-gold {
  background: var(--gold);
  color: var(--black);
}

.home-button-gold:hover {
  background: var(--gold-light);
}

.home-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 62px);
  max-width: 760px;
  margin: 62px 0 0;
  padding: 38px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.home-stats div {
  min-width: 130px;
}

.home-stats dt {
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(34px, 4vw, 44px);
  letter-spacing: 2px;
  line-height: 1;
}

.home-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Proof strip */
.proof-strip {
  padding-block: 30px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-block: 0;
  padding: 0;
  list-style: none;
}

.proof-card {
  min-height: 142px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--gray);
  padding: 22px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.proof-card:hover {
  transform: translateY(-2px);
  border-color: var(--border);
  background: var(--white);
}

.proof-card h2 {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.05;
}

.proof-card p {
  margin: 0;
  color: var(--mid);
  font-size: 13px;
  line-height: 1.65;
}

/* Shared homepage sections */
.home-section {
  padding-block: clamp(76px, 9vw, 112px);
}

.home-section-label {
  margin: 0 0 14px;
  color: var(--mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.home-section-label-light {
  color: rgba(255, 255, 255, 0.45);
}

.home-section-label-gold {
  color: var(--gold);
}

.home-section-title {
  margin-bottom: clamp(42px, 6vw, 64px);
  font-size: clamp(46px, 6.5vw, 78px);
  line-height: 0.98;
}

.home-section-title-light {
  color: var(--white);
}

/* Services */
.services-strip {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.service-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  background: var(--white);
  padding: clamp(30px, 4vw, 42px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  z-index: 1;
  transform: translateY(-3px);
  background: var(--gray);
}

.service-number {
  margin-bottom: 34px;
  color: var(--border);
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: clamp(31px, 3vw, 39px);
  line-height: 1;
}

.service-card p {
  margin: 0 0 16px;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.75;
}

.service-card strong {
  display: block;
  margin-bottom: 24px;
  color: var(--black);
  font-size: 12px;
  line-height: 1.6;
}

.service-card a {
  margin-top: auto;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

/* Quick paths */
.quick-paths {
  background: var(--gray);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.path-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  padding: 26px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.65);
  box-shadow: var(--shadow);
}

.path-card h3 {
  margin-bottom: 10px;
  font-size: 31px;
  line-height: 1;
}

.path-card p {
  margin: 0;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.7;
}

.path-card > span {
  margin-top: auto;
  padding-top: 20px;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* Featured work */
.featured-work {
  background: var(--white);
}

.featured-work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.featured-work-heading .home-section-title {
  margin-bottom: 0;
}

.featured-work-heading > p {
  margin: 0;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.75;
}

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

.work-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--gray);
  color: var(--white);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.work-card:hover img {
  transform: scale(1.035);
  filter: contrast(1.03);
}

.work-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 22px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
}

.work-overlay h3 {
  margin-bottom: 5px;
  font-size: 30px;
}

.work-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 13px;
  line-height: 1.55;
}

/* Process */
.process-section-home {
  background: var(--black);
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 54px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-step {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 28px;
}

.home-step > span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.11);
  font-family: "Bebas Neue", sans-serif;
  font-size: 66px;
  line-height: 1;
}

.home-step h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 31px;
}

.home-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.75;
}

/* Why us */
.why-us {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card {
  padding-right: 12px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 8px;
  background: var(--black);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.feature-card h3 {
  margin: 0 0 9px;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.65;
}

/* Reviews */
.reviews-section {
  background: var(--black);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  display: flex;
  min-height: 275px;
  flex-direction: column;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  padding: 27px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.review-stars {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 3px;
}

.review-card > p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

.review-card footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.review-card footer strong,
.review-card footer span {
  display: block;
}

.review-card footer strong {
  color: var(--white);
  font-size: 14px;
}

.review-card footer span {
  margin-top: 3px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.5px;
}

.reviews-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
}

.google-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #4285f4;
  font-size: 23px;
  font-weight: 800;
}

.reviews-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.55;
}

.reviews-summary strong {
  color: var(--white);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.reviews-link,
.reviews-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.reviews-link {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.reviews-button {
  background: var(--gold);
  color: var(--black);
}

.home-cta {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

/* Responsive */
@media (max-width: 1020px) {
  .proof-grid,
  .path-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .work-grid,
  .home-steps {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-work-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .home-hero {
    min-height: 760px;
    padding-top: calc(var(--header-height) + 58px);
  }

  .home-hero-watermark {
    right: -155px;
    width: 570px;
    max-width: none;
    opacity: 0.045;
  }

  .home-hero h1 {
    font-size: clamp(55px, 17vw, 82px);
  }

  .home-hero-tag {
    max-width: 100%;
    border-radius: 12px;
  }

  .home-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .home-button {
    width: 100%;
  }

  .home-stats {
    gap: 24px;
    margin-top: 46px;
  }

  .reviews-summary {
    grid-template-columns: auto 1fr;
  }

  .reviews-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .proof-grid,
  .path-grid,
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .path-card,
  .review-card {
    min-height: 0;
  }

  .work-card,
  .work-card img {
    min-height: 285px;
  }

  .home-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stats div:last-child {
    grid-column: 1 / -1;
  }

  .reviews-actions {
    display: grid;
    width: 100%;
  }

  .reviews-link,
  .reviews-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-hero {
    min-height: 720px;
  }

  .home-hero-tag span {
    display: none;
  }

  .home-stats {
    grid-template-columns: 1fr;
  }

  .home-stats div:last-child {
    grid-column: auto;
  }
}

@media (hover: none) {
  .home-button:hover,
  .proof-card:hover,
  .service-card:hover,
  .path-card:hover,
  .review-card:hover {
    transform: none;
  }
}
