/**
 * Hat Bar about page (shortcode). Scoped under .hb-about-page.
 * Hero styles live in hb-homepage.css (shared with home).
 * Palette: hb-public.css custom properties.
 */

.hb-about-page {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--hb-text);
  background: var(--hb-parch);
  overflow: hidden;
}

.hb-about-page .hb-story {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--hb-white);
  border-top: 1px solid var(--hb-border);
}
@media (min-width: 900px) {
  .hb-about-page .hb-story {
    grid-template-columns: 1fr 1fr;
  }
}
.hb-about-page .hb-story-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--hb-brown);
}
@media (min-width: 900px) {
  .hb-about-page .hb-story-visual {
    min-height: 360px;
  }
}
.hb-about-page .hb-story-hat {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hb-about-page .hb-story-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgb(252 159 172 / 0.22);
  position: absolute;
}
.hb-about-page .hb-story-ring:nth-child(2) {
  width: 300px;
  height: 300px;
  border-color: rgb(252 159 172 / 0.12);
}
.hb-about-page .hb-story-ring:nth-child(3) {
  width: 380px;
  height: 380px;
  border-color: rgb(252 159 172 / 0.08);
}
.hb-about-page .hb-story-icon {
  font-size: 64px;
  opacity: 0.85;
  z-index: 1;
  line-height: 1;
}
.hb-about-page .hb-story-copy {
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) {
  .hb-about-page .hb-story-copy {
    padding: 64px 56px;
  }
}
.hb-about-page .hb-story-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 28px);
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--hb-brown);
}
.hb-about-page .hb-story-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--hb-muted);
  margin: 0 0 16px;
  font-weight: 300;
}
.hb-about-page .hb-story-copy p:last-child {
  margin-bottom: 0;
}

.hb-about-page .hb-values {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--hb-cream);
  border-bottom: 1px solid var(--hb-border);
}
.hb-about-page .hb-section-head {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 1.25rem;
}
.hb-about-page .hb-section-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hb-gold);
  font-weight: 500;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hb-about-page .hb-section-kicker::before,
.hb-about-page .hb-section-kicker::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--hb-gold);
}
.hb-about-page .hb-section-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--hb-brown);
}
.hb-about-page .hb-section-sub {
  font-size: 15px;
  color: var(--hb-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}
.hb-about-page .hb-value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .hb-about-page .hb-value-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
}
.hb-about-page .hb-value-card {
  background: var(--hb-white);
  border: 0.5px solid var(--hb-border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hb-about-page .hb-value-card:hover {
  transform: translateY(-3px);
}
.hb-about-page .hb-value-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hb-gold), var(--hb-primary));
}
.hb-about-page .hb-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--hb-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hb-about-page .hb-value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--hb-gold);
  color: var(--hb-gold);
}
.hb-about-page .hb-value-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--hb-brown);
}
.hb-about-page .hb-value-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--hb-muted);
  font-weight: 300;
  margin: 0;
}

.hb-about-page .hb-cta {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  background: var(--hb-brown);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hb-about-page .hb-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgb(252 159 172 / 0.1) 0%,
    transparent 70%
  );
}
.hb-about-page .hb-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--hb-white);
  font-weight: 600;
  margin: 0 0 12px;
  position: relative;
}
.hb-about-page .hb-cta p {
  font-size: 15px;
  color: rgb(255 251 245 / 0.55);
  margin: 0 0 32px;
  font-weight: 300;
  position: relative;
}
.hb-about-page .hb-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hb-gold);
  color: var(--hb-brown);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  text-decoration: none;
}
.hb-about-page .hb-btn-gold:hover {
  background: var(--hb-gold-lt);
  color: var(--hb-brown);
}
.hb-about-page .hb-btn-arrow {
  transition: transform 0.2s;
  display: inline-block;
}
.hb-about-page .hb-btn-gold:hover .hb-btn-arrow {
  transform: translateX(4px);
}
