/*
 * Homepage Template Stylesheet — kuwait-paintings.com
 * Prefix: hp-  (scoped to avoid conflicts with Blocksy)
 * Enqueue via functions.php — see instructions at bottom of file
 * ─────────────────────────────────────────────────────────────────
 */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Tajawal:wght@400;500;700&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --hp-brand:        #3d1f8e;
  --hp-brand-l:      #5c3db5;
  --hp-brand-d:      #2a1460;
  --hp-accent:       #e8a020;
  --hp-accent-l:     #ffc84a;
  --hp-text:         #1a1a2e;
  --hp-body:         #3d3d5c;
  --hp-muted:        #7a7a9a;
  --hp-bg:           #f8f7ff;
  --hp-bg-tint:      #f0eeff;
  --hp-white:        #ffffff;
  --hp-border:       #e2ddf5;
  --hp-success:      #1a6b3a;
  --hp-success-bg:   #edfaf3;
  --hp-warn:         #8a5a00;
  --hp-warn-bg:      #fff8e1;
  --hp-r-sm:         6px;
  --hp-r-md:         12px;
  --hp-r-lg:         20px;
  --hp-shadow-sm:    0 2px 8px  rgba(61,31,142,.08);
  --hp-shadow-md:    0 6px 24px rgba(61,31,142,.12);
  --hp-font-d:       'Cairo',   sans-serif;
  --hp-font-b:       'Tajawal', sans-serif;
  --hp-max-w:        1100px;
  --hp-ease:         .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset (scoped) ────────────────────────────────────────────── */
.homepage-custom * { box-sizing: border-box; }
.homepage-custom    { font-family: var(--hp-font-b); color: var(--hp-body); background: var(--hp-bg); direction: rtl; -webkit-font-smoothing: antialiased; }

/* ── Layout ────────────────────────────────────────────────────── */
.hp-container  { max-width: var(--hp-max-w); margin: 0 auto; padding: 0 24px; }
.hp-section    { padding: 72px 0; }
.hp-section--white  { background: var(--hp-white); }
.hp-section--tinted { background: var(--hp-bg-tint); }

/* ── Typography ────────────────────────────────────────────────── */
.homepage-custom h1,
.homepage-custom h2,
.homepage-custom h3,
.homepage-custom h4  { font-family: var(--hp-font-d); color: var(--hp-text); line-height: 1.3; }
.homepage-custom h1  { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900;color: #fff !important;}
.homepage-custom h2  { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 700; margin-bottom: 12px; }
.homepage-custom h3  { font-size: 1.1rem;  font-weight: 700; margin-bottom: 6px; }
.homepage-custom h4  { font-size: 1rem;    font-weight: 600; }

.hp-label {
  display: inline-block;
  background: var(--hp-brand);
  color: #fff;
  font-family: var(--hp-font-d);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hp-section__intro {
  font-size: 1.05rem;
  color: var(--hp-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hp-font-d);
  font-size: .95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--hp-r-md);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--hp-ease);
  line-height: 1;
}
.hp-btn--accent     { background: var(--hp-accent); color: var(--hp-text); box-shadow: 0 4px 16px rgba(232,160,32,.3); }
.hp-btn--accent:hover { background: var(--hp-accent-l); transform: translateY(-2px); }
.hp-btn--ghost      { background: transparent; color: var(--hp-brand); border-color: var(--hp-brand); }
.hp-btn--ghost:hover { background: var(--hp-brand); color: #fff; }
.hp-btn--ghost-light { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.4); }
.hp-btn--ghost-light:hover { background: rgba(255,255,255,.25); }

/* ── Header ────────────────────────────────────────────────────── */
/* ── Header ─────────────────────────────────────────── */
.hp-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hp-border);
  padding: 12px 0;
  transition: box-shadow var(--hp-ease);
}
.hp-header--scrolled { box-shadow: 0 2px 16px rgba(61,31,142,.1); }

.hp-header__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  position: relative;
}
.hp-header__right {
  display: flex; align-items: center; gap: 10px;
}

/* Logo */
.hp-logo { font-family: var(--hp-font-d); font-size: 1.2rem; font-weight: 900; color: var(--hp-brand); text-decoration: none; }
.hp-logo span { color: var(--hp-accent); }
.hp-logo__img { height: 40px; width: auto; }

/* Call button */
.hp-header__phone {
  display: flex; align-items: center; gap: 6px;
  background: var(--hp-brand); color: #fff;
  padding: 8px 14px; border-radius: var(--hp-r-md);
  font-family: var(--hp-font-d); font-weight: 700; font-size: .85rem;
  text-decoration: none; transition: background var(--hp-ease); white-space: nowrap;
}
.hp-header__phone:hover { background: var(--hp-brand-l); }

/* Burger button */
.hp-burger {
  width: 38px; height: 38px; border-radius: var(--hp-r-sm);
  border: 1.5px solid var(--hp-border); background: transparent;
  cursor: pointer; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  transition: border-color var(--hp-ease); padding: 0;
}
.hp-burger:hover { border-color: var(--hp-brand); }
.hp-burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--hp-brand); border-radius: 2px;
  transition: all .25s ease;
}
.hp-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hp-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hp-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Desktop: hide burger, show phone label */
@media (min-width: 769px) {
  .hp-burger { display: none; }
  .hp-drawer { display: flex !important; align-items: center; gap: 4px; }
  .hp-drawer[hidden] { display: flex !important; }
  .hp-nav__list { display: flex; flex-direction: row; list-style: none; padding: 0; margin: 0; gap: 2px; }
  .hp-nav__item { padding: 7px 12px; font-size: .88rem; border-radius: var(--hp-r-sm); }
  .hp-nav__icon { display: none; }
  .hp-nav__cta  { display: none; }
  .hp-drawer { position: static; background: transparent; border: none; box-shadow: none; transform: none; opacity: 1; }
}

/* Mobile drawer */
@media (max-width: 768px) {
  .hp-header__phone-label { display: none; }

  .hp-drawer {
    position: absolute; top: calc(100% + 1px); right: 0; left: 0;
    background: var(--hp-white); border-bottom: 2px solid var(--hp-border);
    box-shadow: 0 12px 32px rgba(61,31,142,.12);
    transform: translateY(-6px); opacity: 0;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 100;
  }
  .hp-drawer:not([hidden]) { transform: translateY(0); opacity: 1; }

  .hp-nav__list  { list-style: none; padding: 8px 0; margin: 0; }
  .hp-nav__item  {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 20px; font-family: var(--hp-font-d); font-weight: 700;
    font-size: .95rem; color: var(--hp-text); text-decoration: none;
    border-bottom: 1px solid var(--hp-bg-tint); transition: background var(--hp-ease);
  }
  .hp-nav__item:hover { background: var(--hp-bg-tint); }
  .hp-nav__icon  {
    width: 34px; height: 34px; background: var(--hp-bg-tint);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; font-size: 1rem; flex-shrink: 0;
  }
  .hp-nav__cta   {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin: 12px 16px 14px; background: var(--hp-brand); color: #fff;
    padding: 13px; border-radius: var(--hp-r-md);
    font-family: var(--hp-font-d); font-weight: 700; font-size: .95rem;
    text-decoration: none; transition: background var(--hp-ease);
  }
  .hp-nav__cta:hover { background: var(--hp-brand-l); }
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hp-hero {
  background: linear-gradient(135deg, var(--hp-brand-d), var(--hp-brand) 55%, var(--hp-brand-l));
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,160,32,.18), transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,255,255,.06), transparent 60%);
  pointer-events: none;
}
.hp-hero__content  { position: relative; max-width: 680px; }
.hp-hero .hp-label { background: rgba(255,255,255,.2); color: #fff; }
.hp-hero__title    { color: #fff !important; margin: 10px 0 18px; }
.hp-hero__title span { color: var(--hp-accent-l); }
.hp-hero__desc     { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 36px; line-height: 1.8; }
.hp-hero__cta      { display: flex; gap: 14px; flex-wrap: wrap; }

.hp-hero__badges   { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.2); }
.hp-hero__badge    { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: .9rem; font-family: var(--hp-font-d); font-weight: 600; }
.hp-hero__badge-icon { width: 36px; height: 36px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* ── Service Cards ─────────────────────────────────────────────── */
.hp-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.hp-service-card {
  background: var(--hp-white);
  border: 1.5px solid var(--hp-border);
  border-radius: var(--hp-r-lg);
  padding: 28px 24px;
  text-decoration: none;
  transition: var(--hp-ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hp-service-card:hover       { border-color: var(--hp-brand); box-shadow: var(--hp-shadow-md); transform: translateY(-4px); }
.hp-service-card__icon       { width: 48px; height: 48px; background: var(--hp-bg-tint); border-radius: var(--hp-r-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hp-service-card__title      { color: var(--hp-brand); font-size: 1.05rem; }
.hp-service-card__desc       { font-size: .9rem; color: var(--hp-muted); line-height: 1.6; }
.hp-service-card__arrow      { margin-top: auto; color: var(--hp-brand); font-size: .88rem; font-weight: 700; font-family: var(--hp-font-d); }

/* ── Data Tables ───────────────────────────────────────────────── */
.hp-table-wrap  { overflow-x: auto; }
.hp-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--hp-r-lg);
  overflow: hidden;
  box-shadow: var(--hp-shadow-sm);
  font-size: .92rem;
}
.hp-table thead tr         { background: var(--hp-brand); color: #fff; }
.hp-table thead th         { padding: 14px 18px; text-align: right; font-family: var(--hp-font-d); font-weight: 700; font-size: .88rem; }
.hp-table tbody tr         { background: var(--hp-white); transition: background var(--hp-ease); }
.hp-table tbody tr:nth-child(even) { background: #faf9ff; }
.hp-table tbody tr:hover   { background: var(--hp-bg-tint); }
.hp-table td               { padding: 13px 18px; border-bottom: 1px solid var(--hp-border); vertical-align: middle; }
.hp-table td:first-child   { font-weight: 700; color: var(--hp-brand); }

.hp-badge          { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: .78rem; font-weight: 700; }
.hp-badge--green   { background: var(--hp-success-bg); color: var(--hp-success); }
.hp-badge--amber   { background: var(--hp-warn-bg);    color: var(--hp-warn); }
.hp-badge--purple  { background: var(--hp-bg-tint);    color: var(--hp-brand); }

.hp-table__note {
  margin-top: 14px;
  font-size: .88rem;
  color: var(--hp-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-table__note a { color: var(--hp-brand); font-weight: 700; text-decoration: none; }

/* ── Steps ─────────────────────────────────────────────────────── */
.hp-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.hp-step-card      { background: var(--hp-white); border: 1.5px solid var(--hp-border); border-radius: var(--hp-r-lg); padding: 26px 24px; display: flex; gap: 18px; align-items: flex-start; transition: var(--hp-ease); }
.hp-step-card:hover { border-color: var(--hp-brand-l); box-shadow: var(--hp-shadow-sm); }
.hp-step-card__num  { width: 40px; height: 40px; min-width: 40px; background: var(--hp-brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--hp-font-d); font-weight: 900; font-size: 1rem; }
.hp-step-card__body h3 { font-size: 1rem; color: var(--hp-text); }
.hp-step-card__body p  { font-size: 1rem; color: var(--hp-muted); margin-top: 4px; line-height: 1.65; }

/* ── Price note ────────────────────────────────────────────────── */
.hp-price-note {
  background: var(--hp-warn-bg);
  border: 1.5px solid #ffe082;
  border-radius: var(--hp-r-md);
  padding: 14px 20px;
  font-size: .9rem;
  color: var(--hp-warn);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-price-note a { color: var(--hp-warn); font-weight: 700; text-decoration: none; }

/* ── Brands ────────────────────────────────────────────────────── */
.hp-brands__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.hp-brand-card      { background: var(--hp-bg-tint); border: 1.5px solid var(--hp-border); border-radius: var(--hp-r-lg); padding: 24px 22px; transition: var(--hp-ease); }
.hp-brand-card:hover { border-color: var(--hp-brand); box-shadow: var(--hp-shadow-sm); }
.hp-brand-card h4   { color: var(--hp-brand); font-size: 1.02rem; margin-bottom: 6px; }
.hp-brand-card p    { font-size: 1rem; color: var(--hp-muted); line-height: 1.65; }

/* ── Areas ─────────────────────────────────────────────────────── */
.hp-areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.hp-area-link {
  background: var(--hp-white);
  border: 1.5px solid var(--hp-border);
  border-radius: var(--hp-r-md);
  padding: 16px 14px;
  text-align: center;
  text-decoration: none;
  color: var(--hp-brand);
  font-family: var(--hp-font-d);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--hp-ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hp-area-link:hover { background: var(--hp-brand); color: #fff; transform: translateY(-3px); box-shadow: var(--hp-shadow-sm); }

/* ── Why Us ────────────────────────────────────────────────────── */
.hp-whyus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.hp-whyus-card       { display: flex; gap: 18px; align-items: flex-start; padding: 26px; background: var(--hp-white); border: 1.5px solid var(--hp-border); border-radius: var(--hp-r-lg); transition: var(--hp-ease); }
.hp-whyus-card:hover { border-color: var(--hp-accent); box-shadow: var(--hp-shadow-sm); }
.hp-whyus-card__icon { width: 48px; height: 48px; min-width: 48px; background: var(--hp-accent); border-radius: var(--hp-r-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.hp-whyus-card__body h3 { color: var(--hp-text); font-size: 1.05rem; }
.hp-whyus-card__body p  { font-size: 1rem; color: var(--hp-muted); margin-top: 4px; }

/* ── Reviews ───────────────────────────────────────────────────── */
.hp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.hp-review-card          { background: var(--hp-white); border: 1.5px solid var(--hp-border); border-radius: var(--hp-r-lg); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; transition: var(--hp-ease); }
.hp-review-card:hover    { box-shadow: var(--hp-shadow-md); transform: translateY(-3px); }
.hp-review-card__stars   { color: #f5a623; font-size: 1rem; letter-spacing: 2px; }
.hp-review-card__text    { font-size: 1.1rem; color: var(--hp-body); font-style: italic; line-height: 1.75; flex: 1; }
.hp-review-card__text::before { content: '"'; }
.hp-review-card__text::after  { content: '"'; }
.hp-review-card__name    { display: block; font-family: var(--hp-font-d); font-weight: 700; font-size: .9rem; color: var(--hp-brand); }
.hp-review-card__area    { font-size: .82rem; color: var(--hp-muted); }

/* ── Tips ──────────────────────────────────────────────────────── */
.hp-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.hp-tip-group h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hp-brand);
  font-size: 1.02rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hp-bg-tint);
}
.hp-tip-group__icon { width: 32px; height: 32px; background: var(--hp-bg-tint); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; }
.hp-tip-list        { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hp-tip-list li     { display: flex; gap: 10px; align-items: flex-start; font-size: 1.2rem; color: var(--hp-body); line-height: 1.65; }
.hp-tip-list li::before { content: '✓'; color: var(--hp-success); font-weight: 900; font-size: .85rem; margin-top: 3px; flex-shrink: 0; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.hp-faq__list  { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.hp-faq__item  { background: var(--hp-white); border: 1.5px solid var(--hp-border); border-radius: var(--hp-r-md); overflow: hidden; }
.hp-faq__q {
  width: 100%;
  padding: 18px 22px;
  font-family: var(--hp-font-d);
  font-weight: 700;
  font-size: .98rem;
  color: var(--hp-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  text-align: right;
  transition: background var(--hp-ease);
}
.hp-faq__q:hover   { background: var(--hp-bg-tint); }
.hp-faq__chevron   { font-size: .82rem; color: var(--hp-brand); transition: transform var(--hp-ease); flex-shrink: 0; }
.hp-faq__item--open .hp-faq__chevron { transform: rotate(180deg); }
.hp-faq__a {
  padding: 14px 22px 18px;
  font-size: 1.3rem;
  color: var(--hp-body);
  line-height: 1.8;
  border-top: 1px solid var(--hp-border);
}

/* ── Posts ─────────────────────────────────────────────────────── */
.hp-posts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.hp-post-card          { text-decoration: none; background: var(--hp-white); border: 1.5px solid var(--hp-border); border-radius: var(--hp-r-lg); overflow: hidden; transition: var(--hp-ease); display: flex; flex-direction: column; }
.hp-post-card:hover    { box-shadow: var(--hp-shadow-md); transform: translateY(-4px); }
.hp-post-card__thumb   { aspect-ratio: 16/9; overflow: hidden; }
.hp-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.hp-post-card:hover .hp-post-card__thumb img { transform: scale(1.04); }
.hp-post-card__body    { padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hp-post-card__date    { font-size: .78rem; color: var(--hp-muted); font-family: var(--hp-font-d); }
.hp-post-card__title   { font-size: 1rem; font-weight: 700; color: var(--hp-text); font-family: var(--hp-font-d); line-height: 1.4; }
.hp-post-card__excerpt { font-size: .88rem; color: var(--hp-muted); line-height: 1.6; }

/* ── CTA Final ─────────────────────────────────────────────────── */
.hp-cta {
  background: linear-gradient(135deg, var(--hp-brand-d), var(--hp-brand));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(232,160,32,.15), transparent 70%);
  pointer-events: none;
}
.hp-cta h2      { color: #fff; position: relative; margin-bottom: 12px; }
.hp-cta p       { color: rgba(255,255,255,.8); margin-bottom: 36px; font-size: 1.05rem; position: relative; }
.hp-cta__btns   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Footer ────────────────────────────────────────────────────── */
.hp-footer     { background: var(--hp-text); color: rgba(255,255,255,.55); padding: 24px 0; text-align: center; font-size: .85rem; }
.hp-footer a   { color: rgba(255,255,255,.8); text-decoration: none; }
.hp-footer a:hover { color: #fff; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hp-section   { padding: 52px 0; }
  .hp-hero      { padding: 60px 0 52px; }
  .hp-hero__badges { gap: 14px; }
  .hp-table     { font-size: .82rem; }
  .hp-table th,
  .hp-table td  { padding: 10px 12px; }
  .hp-steps__grid   { grid-template-columns: 1fr; }
  .hp-areas__grid   { grid-template-columns: repeat(2, 1fr); }
  .hp-header__phone .hp-header__phone-label { display: none; }
}
@media (max-width: 480px) {
  .hp-areas__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-hero__cta   { flex-direction: column; }
  .hp-cta__btns   { flex-direction: column; align-items: center; }
}

/*
 * ─────────────────────────────────────────────────────────────────
 * HOW TO ENQUEUE — add this to your child theme's functions.php:
 * ─────────────────────────────────────────────────────────────────
 *
 * function hp_enqueue_homepage_styles() {
 *     if ( is_front_page() && is_page_template( 'page-homepage.php' ) ) {
 *         wp_enqueue_style(
 *             'hp-homepage',
 *             get_stylesheet_directory_uri() . '/homepage.css',
 *             [],
 *             '1.0.0'
 *         );
 *     }
 * }
 * add_action( 'wp_enqueue_scripts', 'hp_enqueue_homepage_styles' );
 *
 * ─────────────────────────────────────────────────────────────────
 */
