/* About Us - matched to hibachinow.com/about-us */

.hn-about {
  padding-bottom: 4rem;
}

.hn-about__intro {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
  padding: 7.5rem 1rem 0;
  text-align: center;
}

.hn-about__intro h1 {
  margin: 0 0 1.5rem;
  color: #dc2626;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.hn-about__intro > p {
  margin: 0 auto;
  max-width: 56rem;
  color: #525252;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.625;
}

/* Our Story */
.hn-about__story {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
  padding: 3rem 0 4rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hn-about__story {
    grid-template-columns: 1fr 1fr;
  }
}

.hn-about__media {
  aspect-ratio: 3 / 2;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  background:
    linear-gradient(145deg, rgba(127, 29, 29, 0.85), rgba(28, 25, 23, 0.9)),
    radial-gradient(circle at 30% 40%, #ea580c 0%, transparent 50%),
    #292524;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.hn-about__story-copy h2 {
  margin: 0 0 0.5rem;
  color: #dc2626;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
}

.hn-about__bar {
  display: block;
  width: 3rem;
  height: 0.25rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: linear-gradient(to right, #ef4444, #dc2626);
}

.hn-about__lead {
  margin: 0 0 1.5rem;
  color: #404040;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.625;
}

.hn-about__body {
  display: grid;
  gap: 1rem;
  color: #525252;
  line-height: 1.625;
}

.hn-about__body p { margin: 0; }

/* Why Guests Love Us */
.hn-about__why {
  background: #f9fafb;
  padding: 4rem 0;
}

.hn-about__why-head {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto 3rem;
  text-align: center;
}

.hn-about__why-head h2 {
  margin: 0 0 1.5rem;
  color: #dc2626;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
}

.hn-about__why-head p {
  margin: 0;
  color: #525252;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.625;
}

.hn-about__cards {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hn-about__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hn-about__card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.hn-about__card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.hn-about__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.hn-about__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.hn-about__card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.hn-about__card p {
  margin: 0;
  color: #525252;
  line-height: 1.625;
}

/* CTA */
.hn-about__cta {
  width: min(100% - 2rem, 80rem);
  margin: 4rem auto 0;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  color: #fff;
  background: #dc2626;
}

@media (min-width: 768px) {
  .hn-about__cta { padding: 3rem; }
}

.hn-about__cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hn-about__cta-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}

.hn-about__cta h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.hn-about__cta > .hn-about__cta-inner > p:first-of-type {
  margin: 0 0 2rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.9);
}

.hn-about__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #dc2626;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.hn-about__cta-btn:hover {
  background: #f9fafb;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hn-about__checks {
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  width: fit-content;
  text-align: left;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 640px) {
  .hn-about__checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

.hn-about__checks li {
  display: grid;
  grid-template-columns: 1.25rem auto;
  align-items: center;
  gap: 0.75rem;
}

.hn-about__checks li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #fff 35%, transparent 36%),
    #fff;
  box-shadow: inset 0 0 0 2px currentColor;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.hn-about__phone {
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.hn-about__phone a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.hn-about__phone a:hover {
  text-decoration: underline;
}