﻿
.editorial-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #a08042 100%);
}

.huli-hero {
  padding: 4rem 2rem 6rem;
  max-width: 80rem;
  margin: 0 auto;
}
.huli-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .huli-hero-inner { grid-template-columns: 7fr 5fr; }
}
.huli-hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: var(--secondary-container);
  color: var(--on-secondary-container);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.huli-hero-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: -0.025em;
  color: var(--primary);
  line-height: 1.1;
}
.huli-hero-title span {
  color: var(--on-surface-variant);
}
.huli-hero-desc {
  font-size: 1.25rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
  max-width: 40rem;
  font-weight: 300;
  margin-top: 1.5rem;
}
.huli-hero-img-wrap {
  position: relative;
}
.huli-hero-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
  z-index: 10;
}
.huli-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.huli-hero-blob {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 12rem;
  height: 12rem;
  background: var(--primary-fixed);
  border-radius: var(--radius-full);
  z-index: 0;
  opacity: 0.4;
  filter: blur(3rem);
}


.huli-services {
  background: var(--surface-container-low);
  padding: 6rem 0;
}
.huli-services-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.huli-services-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .huli-services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.huli-services-header h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 1rem;
}
.huli-services-header p { color: var(--on-surface-variant); max-width: 28rem; }
.huli-services-divider {
  display: none;
  height: 1px;
  flex-grow: 1;
  margin: 0 2rem;
  background: rgba(209,197,180,0.3);
}
@media (min-width: 768px) { .huli-services-divider { display: block; } }

/* Bento grid */
.huli-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .huli-bento { grid-template-columns: 1fr 1fr 1fr; }
}

/* Large card (spans 2 cols on md) */
.huli-bento-card {
  background: var(--surface-container-lowest);
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.4s;
}
.huli-bento-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.huli-bento-large {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .huli-bento-large {
    grid-column: span 2;
    flex-direction: row;
  }
}
.huli-bento-large-text { flex: 1; }
.huli-bento-large-img {
  flex: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 16rem;
}
@media (min-width: 768px) { .huli-bento-large-img { height: auto; } }
.huli-bento-large-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.huli-bento-card:hover .huli-bento-large-img img { transform: scale(1.08); }

.bento-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  background: rgba(197,160,89,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.bento-icon .material-symbols-outlined { font-size: 2rem; }
.bento-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--on-surface);
  margin-bottom: 1rem;
}
.bento-desc {
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.bento-list { display: flex; flex-direction: column; gap: 0.75rem; }
.bento-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}
.bento-list-item .material-symbols-outlined { font-size: 1.125rem; }

/* Rehab card (secondary-container) */
.huli-bento-rehab {
  background: var(--secondary-container);
  color: var(--on-secondary-container);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.huli-bento-rehab .bento-icon {
  background: rgba(255,255,255,0.4);
  color: var(--on-secondary-container);
}
.huli-bento-rehab .bento-title { color: var(--on-secondary-container); }
.huli-bento-rehab .bento-desc  { color: var(--on-secondary-container); font-weight: 500; }
.huli-bento-rehab-img {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 1rem;
}
.huli-bento-rehab-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.huli-bento-card:hover .huli-bento-rehab-img img { transform: scale(1.05); }

/* Nursing card (surface-container-highest) */
.huli-bento-nursing {
  background: var(--surface-container-highest);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.huli-bento-nursing .bento-title {
  font-size: 1.5rem;
}
.bento-team-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-xl);
  margin-top: 1rem;
}
.bento-avatars { display: flex; }
.bento-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 2px solid #fff;
  background: #d6d3d1;
  margin-left: -0.75rem;
}
.bento-avatar:first-child { margin-left: 0; }
.bento-team-label { font-size: 0.875rem; font-weight: 500; color: var(--on-surface); }

/* Entertainment card (spans 2 cols) */
.huli-bento-entertain {
  background: rgba(255,222,165,0.3);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .huli-bento-entertain {
    grid-column: span 2;
    flex-direction: row;
  }
}
.huli-bento-entertain-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (min-width: 768px) { .huli-bento-entertain-img { width: 40%; } }
.huli-bento-entertain-img img { width: 100%; height: 100%; object-fit: cover; }
.huli-bento-entertain-text { flex: 1; }
.entertain-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.entertain-label span { display: inline-block; width: 2rem; height: 1px; background: var(--primary); }
.entertain-title { font-family: var(--font-headline); font-weight: 700; font-size: 1.875rem; color: var(--on-surface); margin-bottom: 1rem; }
.entertain-desc { color: var(--on-surface-variant); font-size: 1.125rem; line-height: 1.7; margin-bottom: 1.5rem; }
.entertain-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-headline);
  transition: gap 0.2s;
  cursor: pointer;
}
.entertain-more-btn:hover { gap: 0.75rem; }

/* ============================================================
   Quality Standards
   ============================================================ */
.huli-quality {
  padding: 6rem 2rem;
  max-width: 80rem;
  margin: 0 auto;
}
.huli-quality-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .huli-quality-inner { grid-template-columns: 1fr 1fr; }
}
.huli-quality-text-wrap { position: relative; }
.huli-quality-blob {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 8rem;
  height: 8rem;
  background: var(--primary);
  border-radius: var(--radius-full);
  opacity: 0.1;
  filter: blur(2rem);
}
.huli-quality-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 3rem;
}
.huli-quality-title span { color: var(--on-surface); }
.quality-items { display: flex; flex-direction: column; gap: 3rem; }
.quality-item { display: flex; gap: 1.5rem; }
.quality-number {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(197,160,89,0.2);
  flex-shrink: 0;
  line-height: 1;
}
.quality-content h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
}
.quality-content p { color: var(--on-surface-variant); line-height: 1.65; }

/* Quality Bento Grid 2x2 */
.huli-quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.quality-grid-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.quality-grid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quality-grid-stat {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quality-stat-value {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.375rem;
}
.quality-stat-label {
  font-size: 0.875rem;
  line-height: 1.4;
}
.stat-brown {
  background: #C5A059;
  color: #fff;
}
.stat-brown .quality-stat-label { opacity: 0.85; }
.stat-green {
  background: #D4E4C0;
  color: #2F3A26;
}
.stat-green .quality-stat-label { opacity: 0.75; }

/* ============================================================
.huli-cta-btn-secondary:active { transform: scale(0.95); }
