
.about-hero{
  padding:74px 0;
  background:
    radial-gradient(circle at 88% 18%,rgba(255,106,0,.12),transparent 26%),
    linear-gradient(135deg,#f9fbfd 0%,#eef4f8 100%);
}
.about-hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:54px;
  align-items:center;
}
.breadcrumb{
  display:flex;
  gap:9px;
  align-items:center;
  margin-bottom:26px;
  color:var(--muted);
  font-size:15px;
}
.breadcrumb a{
  color:var(--navy);
  text-decoration:none;
  font-weight:750;
}
.about-hero h1{
  color:var(--navy);
  max-width:900px;
}
.about-hero-lead{
  font-size:20px;
  color:var(--muted);
  max-width:760px;
}
.about-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}
.about-outline{
  border-color:var(--navy);
  color:var(--navy);
  background:#fff;
}
.about-outline:hover{background:var(--soft)}
.about-hero-card{
  background:var(--navy);
  color:#fff;
  border-radius:20px;
  padding:32px;
  box-shadow:var(--shadow);
}
.hero-card-label{
  color:#ffb38a;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.14em;
  font-size:13px;
  margin-bottom:16px;
}
.about-hero-card dl{margin:0}
.about-hero-card dl div{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.15);
}
.about-hero-card dl div:last-child{border-bottom:0}
.about-hero-card dt{color:#c9d8e5}
.about-hero-card dd{margin:0;font-weight:800}
.about-hero-card a{text-decoration:none}

.story-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:58px;
  align-items:start;
}
.story-copy>p:not(.eyebrow){color:var(--muted)}
.story-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:30px;
}
.story-points div{
  padding:20px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}
.story-points strong{
  display:block;
  color:var(--navy);
  margin-bottom:5px;
}
.story-points span{
  color:var(--muted);
  font-size:15px;
  line-height:1.45;
}
.proprietor-profile{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
}
.proprietor-profile img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:var(--soft);
}
.profile-body{padding:26px}
.profile-body h2{font-size:34px}
.profile-body>p:not(.eyebrow){color:var(--muted)}
.profile-contact{
  display:grid;
  gap:7px;
  margin-top:18px;
}
.profile-contact a{
  text-decoration:none;
  color:var(--navy);
  font-weight:750;
}
.profile-contact a:hover{color:var(--red)}
.profile-note{
  margin-top:18px!important;
  padding-top:16px;
  border-top:1px solid var(--line);
  font-size:14px;
}

.about-category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.about-category-grid a{
  min-height:240px;
  padding:26px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  text-decoration:none;
  transition:.18s;
}
.about-category-grid a:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.about-category-grid a>span{
  display:inline-grid;
  place-items:center;
  width:46px;height:46px;
  border-radius:12px;
  background:#fff1e8;
  color:var(--red);
  font-weight:900;
  margin-bottom:24px;
}
.about-category-grid p{
  color:var(--muted);
  font-size:16px;
}

.location-section{background:#fff}
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:start;
}
.location-grid>div:first-child p:not(.eyebrow){color:var(--muted)}
.contact-panel{
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--soft);
  padding:28px;
}
.contact-panel h3{font-size:24px}
.contact-panel a,.contact-panel>div{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:14px;
  padding:13px 0;
  border-bottom:1px solid var(--line);
  text-decoration:none;
}
.contact-panel a:last-of-type{border-bottom:1px solid var(--line)}
.contact-panel>div:last-child{border-bottom:0}
.contact-panel strong{color:var(--navy)}
.contact-panel span{color:var(--muted);word-break:break-word}

@media(max-width:900px){
  .about-hero-grid,
  .story-grid,
  .location-grid{
    grid-template-columns:1fr;
  }
  .about-category-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .about-hero{padding:52px 0}
  .about-hero-actions{display:grid;grid-template-columns:1fr}
  .story-points{grid-template-columns:1fr}
  .about-category-grid{grid-template-columns:1fr}
  .about-hero-card dl div,
  .contact-panel a,
  .contact-panel>div{
    grid-template-columns:1fr;
    gap:3px;
  }
}
