/* Image clarity, detailed sections and responsive refinements */
.brand img {
  width: 76px;
  height: 58px;
  padding: 3px;
  border: 1px solid #d7a945;
  border-radius: 9px;
  background: #fff;
  object-fit: contain;
}

.logo-stage img {
  width: 82%;
  height: auto;
  aspect-ratio: 649 / 490;
  padding: 12px;
  border: 5px solid #e2b957;
  border-radius: 22px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.product-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: #f1f4f4;
  object-fit: contain;
}

.card-body h3 { margin-bottom: 8px; }
.card-body p {
  min-height: 4.1em;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.service-strip { background: #fff; border-bottom: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-grid > div {
  display: flex;
  gap: 14px;
  padding: 27px 22px;
  border-right: 1px solid var(--line);
}
.service-grid > div:first-child { border-left: 1px solid var(--line); }
.service-grid b { color: var(--gold); font-family: Manrope, sans-serif; }
.service-grid span { display: flex; flex-direction: column; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.service-grid strong { color: var(--ink); font-size: .92rem; }

.process { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps article { padding: 30px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.steps b { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: Manrope, sans-serif; }
.steps h3 { margin: 20px 0 8px; font-family: Manrope, sans-serif; font-size: 1.15rem; }
.steps p, .business-note { margin: 0; color: var(--muted); font-size: .92rem; }
.business-note { max-width: 500px; margin-top: 22px; }
.gst-card { grid-column: 1 / -1; display: flex; flex-direction: column; padding: 17px; border-radius: 10px; background: var(--navy); color: #fff; }
.gst-card small { color: #c7d6dc; }
.footer-brand img { width: 64px; height: 48px; padding: 2px; border-radius: 7px; background: #fff; object-fit: contain; }
.about-intro { max-width: 900px; margin-bottom: 45px; }
.about-intro h2 { max-width: 820px; }
.about-intro > p:not(.eyebrow) { max-width: 820px; margin: 22px 0 0; color: #bdcdd3; font-size: 1.02rem; }
.heritage-highlight { display: grid; grid-template-columns: 170px 1fr 130px; gap: 35px; align-items: center; margin: 0 0 55px; padding: 35px 40px; border: 1px solid rgba(215,169,69,.65); border-radius: 18px; background: linear-gradient(120deg,rgba(215,169,69,.18),rgba(255,255,255,.05)); box-shadow: 0 20px 50px rgba(0,0,0,.16); }
.heritage-year { display: flex; flex-direction: column; padding-right: 30px; border-right: 1px solid rgba(215,169,69,.45); }
.heritage-year small { color: #d7c79f; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.heritage-year strong { color: var(--gold); font-family: Manrope,sans-serif; font-size: 3.4rem; line-height: 1; }
.heritage-copy .eyebrow { margin-bottom: 8px; }
.heritage-copy h3 { margin: 0 0 9px; color: #fff; font-family: Manrope,sans-serif; font-size: 1.45rem; }
.heritage-copy > p:last-child { margin: 0; color: #c8d6db; font-size: .96rem; }
.heritage-badge { display: grid; width: 112px; height: 112px; place-content: center; justify-self: end; border: 2px solid var(--gold); border-radius: 50%; color: #fff; text-align: center; }
.heritage-badge strong { color: var(--gold); font-family: Manrope,sans-serif; font-size: 2.3rem; line-height: 1; }
.heritage-badge span { margin-top: 5px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.about-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 55px; }
.about-details article { padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.04); }
.about-details span { color: var(--gold); font-family: Manrope, sans-serif; font-weight: 800; }
.about-details h3, .about-panel h3 { margin: 14px 0 8px; font-family: Manrope, sans-serif; font-size: 1.25rem; }
.about-details p { margin: 0; color: #bdcdd3; font-size: .94rem; }
.about-grid.expanded { align-items: stretch; gap: 32px; }
.about-grid.expanded .about-panel { padding: 35px; border-radius: 16px; background: rgba(255,255,255,.06); }
.quote-card dl { margin: 0 0 28px; }
.quote-card dl div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid #ddd7ca; }
.quote-card dt { color: var(--muted); }
.quote-card dd { margin: 0; font-weight: 700; }

@media (max-width: 980px) {
  .service-grid, .steps, .about-details { grid-template-columns: repeat(2, 1fr); }
  .service-grid > div:nth-child(3) { border-left: 1px solid var(--line); }
  .heritage-highlight { grid-template-columns: 140px 1fr; }
  .heritage-badge { display: none; }
}

@media (max-width: 620px) {
  .brand img { width: 62px; height: 48px; }
  .service-grid, .steps, .about-details { grid-template-columns: 1fr; }
  .service-grid > div { border-left: 1px solid var(--line); }
  .product-card { display: block; }
  .product-card > img { width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .card-body p { min-height: 0; }
  .heritage-highlight { display: block; padding: 28px; }
  .heritage-year { margin-bottom: 24px; padding: 0 0 20px; border-right: 0; border-bottom: 1px solid rgba(215,169,69,.45); }
  .heritage-year strong { font-size: 3rem; }
}
