.page-hero {
  background: rgb(243, 246, 249);
  padding: 17px 0 30px;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: rgb(74, 93, 110);
  margin-bottom: 14px;
}
/* .page-hero .breadcrumb .sep {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  display: inline-block;
  margin-bottom: 2px;
} */

.page-hero .breadcrumb .current {
  color: var(--color-black);
}
.page-hero h1 {
  font-size: 32px;
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  margin: 0;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
}

/* Two-up text + image layout */
.two-up {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 60px;
  align-items: center;
}
.two-up .col-text h2 {
  font-size: var(--fs-30);
  font-weight: var(--fw-semibold);
  margin: 0 0 24px;
  color: var(--color-black);
  line-height: 1.2;
}
.two-up .col-text p {
  font-size: var(--fs-16);
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0 0 18px;
}
.two-up .col-text p:last-of-type {
  margin-bottom: 32px;
}
.about-main-section{
  padding-bottom: 80px;
}

/* "Who We Are" hero collage */
.who-collage {
  position: relative;
  aspect-ratio: 552 / 332;
}
.who-collage .img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}
.who-collage .img-1 {
  left: 0;
  top: 0;
  width: 58%;
  height: 76%;
  z-index: 1;
}
.who-collage .img-2 {
  right: 0;
  top: 6%;
  width: 42%;
  height: 86%;
  z-index: 2;
  transform: rotate(2deg);
}
.who-collage .img-3 {
  left: 10%;
  bottom: 0;
  width: 36%;
  height: 38%;
  z-index: 3;
  transform: rotate(-4deg);
}

/* About-Us page section rhythm (matches figma vertical spacing) */
.page-hero + .section {
  padding-top: 80px;
}

/* Mission band */
.mission-band {
  background: rgb(243, 246, 249);
  padding: 60px 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 60px;
  align-items: start;
}
.mission-text h2 {
  font-size: var(--fs-30);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  margin: 0 0 20px;
}
.mission-text p {
  font-size: var(--fs-16);
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0;
}
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-card {
  background: var(--color-white);
  border: 1px solid rgb(230, 235, 239);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-card .feature-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card .feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.feature-card h3 {
  font-size: var(--fs-20);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  margin: 0 0 8px;
  line-height: 1.1;
}
.feature-card p {
  font-size: var(--fs-16);
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

/* Why choose us */
.why-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-items: center;
}
.why-grid > .why-text {
  justify-self: stretch;
  max-width: 720px;
}
.why-image-wrap {
  position: relative;
  width: 100%;
  max-width: 430px;
  /* extra room on the right + bottom so the offset frame can peek out */
  aspect-ratio: 430 / 520;
}
/* Photo sits in the top-left, on top of the frame */
.why-image {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  background: rgb(230, 230, 230) center / cover no-repeat;
  background-image: url("https://projects.theglobalwebdev.com/trantham/wp-content/uploads/2026/05/about-why-choose.png");
  z-index: 2;
}
/* Hand-drawn frame: same size as the photo, but offset down-right.
   Its top + left strokes are hidden behind the photo, only the right + bottom show. */
.why-image-wrap::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 25px;
  right: 0;
  bottom: 0;
  background: url("https://projects.theglobalwebdev.com/trantham/wp-content/uploads/2026/05/about-why-frame.png") center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 1;
}
.why-text h2 {
  font-size: var(--fs-30);
  font-weight: var(--fw-semibold);
  margin: 0 0 20px;
  color: var(--color-black);
  line-height: 1.2;
}
.why-text > p {
  font-size: var(--fs-16);
  line-height: 1.6;
  color: rgb(51, 51, 51);
  margin: 0 0 28px;
  font-weight: 500;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: flex-start;
}
.why-feature .why-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid rgb(190, 219, 211);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
}
.why-feature .why-icon svg {
  width: 20px;
  height: 20px;
}
.why-feature h3 {
  font-size: 22px;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin: 6px 0 8px;
  line-height: 1;
}
.why-feature p {
  font-size: var(--fs-16);
  line-height: 1.6;
  color: rgb(51, 51, 51);
  margin: 0;
}

/* Prestige limited editions */
.prestige-band {
  background: rgb(243, 246, 249);
  padding: 60px 0 60px;
}
.prestige-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.prestige-card {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    width: 100% !important;
}
.prestige-card .img {
  width: 100%;
  aspect-ratio: 273 / 280;
  background: rgb(230, 230, 230) center / cover no-repeat;
  border: 1px solid rgb(222, 231, 244);
  margin-bottom: 14px;
}
.prestige-card .tag {
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  color: var(--color-black);
  margin: 0 0 8px;
}
.prestige-card .title {
  font-size: var(--fs-18);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  margin: 0 0 18px;
  line-height: 1;
}
.prestige-card .btn-outline {
  height: 40px;
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-black);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
}
.prestige-card .btn-outline .btn-line {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

/* Section title (centered) */
.center-title {
  font-size: var(--fs-30);
  font-weight: var(--fw-semibold);
  text-align: center;
  margin: 0;
  color: var(--color-black);
}


@media (max-width: 820px) {
  /* About-us responsive */
  .two-up,
  .mission-grid,
  .why-grid {
    gap: 36px;
  }
  .two-up .col-text h2,
  .mission-text h2,
  .why-text h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .two-up .col-text p,
  .mission-text p,
  .why-text > p {
    font-size: 15px;
    line-height: 1.7;
  }
  .page-hero {
    padding: 22px 0 28px;
  }
  .page-hero h1 {
    font-size: 26px;
  }
  .who-collage {
    max-width: 460px;
    margin: 0 auto;
  }
  .feature-card {
    padding: 18px 20px;
    gap: 14px;
  }
  .feature-card h3 {
    font-size: 18px;
  }
  .feature-card p {
    font-size: 15px;
  }
  .why-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  .why-features {
    gap: 20px;
  }
  .why-feature h3 {
    font-size: 18px;
  }
  .why-feature p {
    font-size: 15px;
  }
  .mission-band {
    padding: 64px 0;
  }
  .prestige-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .prestige-band {
    padding: 56px 0 64px;
  }
  .center-title {
    font-size: 26px;
  }
  .arrivals-left {
    display: none;
  }
  .arrivals-title {
    font-size: 32px;
  }
  .arrivals-sub {
    font-size: 16px;
  }

  .newsletter h2 {
    font-size: 32px;
  }
  .newsletter p {
    font-size: 16px;
  }
  .why-grid {
    flex-wrap: wrap;
  }
}

/* PHONE — single column tweaks */
@media (max-width: 640px) {
  .page-hero h1 {
      font-size: 24px;
  }
  .two-up .col-text h2,
  .mission-text h2,
  .why-text h2,
  .center-title {
    font-size: 22px;
  }
  .who-collage {
    max-width: 320px;
  }
  .why-image-wrap {
    max-width: 300px;
  }
  .feature-card {
    padding: 16px 16px;
  }
  .feature-card h3 {
    font-size: 17px;
  }
  .mission-band {
    padding: 48px 0;
  }
  .prestige-band {
    padding: 44px 0 52px;
  }
  .section {
    padding-top: 60px;
  }
  .category-card {
    flex: 0 0 150px;
  }

  .hero-title {
    font-size: 30px;
  }
  .arrivals-title {
    font-size: 26px;
  }
  .newsletter h2 {
    font-size: 26px;
  }
  .subscribe-form {
    flex-direction: column;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 12px;
  }
  .subscribe-form .input-wrap {
    height: 50px;
    background: var(--color-white);
    border: 1px solid rgb(215, 222, 234);
  }
  .subscribe-form button {
    width: 100%;
    height: 50px;
  }
  .about-main-section{
    padding-bottom: 60px;
  }
  .prestige-grid,.two-up, .mission-grid, .why-grid{
    grid-template-columns: 1fr;
  }
  
}