/*
Theme Name: Hendry Munief
Theme URI: https://example.com/
Author: Hendry Munief
Description: Custom theme.
Version: 1.0.0
Text Domain: hendrymunief
*/

:root{
  --hm-orange:#f26a21;
  --hm-dark:#1f1f1f;
  --hm-muted:#6b7280;
  --hm-border:#e5e7eb;
  --hm-bg:#ffffff;
  --hm-container:1100px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--hm-dark);
  background:var(--hm-bg);
  line-height:1.5;
}

a{color:inherit; text-decoration:none;}
img{max-width:100%; height:auto; display:block;}

.hm-container{
  width:min(var(--hm-container), calc(100% - 48px));
  margin-inline:auto;
}

.hm-topbar{
  border-bottom:1px solid var(--hm-border);
  background:#fff;
}

.hm-header{
  display:flex;
  align-items:center;
  gap:24px;
  padding:14px 0;
}

.hm-burger{
  display:none;
  appearance:none;
  border:1px solid var(--hm-border);
  background:#fff;
  border-radius:999px;
  width:42px;
  height:42px;
  padding:0;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex:0 0 auto;
}

.hm-burger-lines{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.hm-burger-lines span{
  width:18px;
  height:2px;
  background:#111;
  border-radius:999px;
  display:block;
}

.hm-mobile-overlay{
  display:none;
}

.hm-brand{
  font-weight:750;
  letter-spacing:.2px;
  white-space:nowrap;
  font-size:18px;
}

.hm-brand-link{
  color:inherit;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.hm-brand-link:hover{opacity:.92;}

.hm-nav{
  flex:1;
  display:flex;
  justify-content:center;
}

.hm-nav ul{
  list-style:none;
  padding:0;
  margin:0;
}

.hm-nav .hm-menu{
  display:flex;
  gap:28px;
  align-items:center;
}

.hm-nav .hm-menu > li{
  position:relative;
}

.hm-nav .hm-menu > li > a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:14px 4px;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#2b2b2b;
  border-bottom:2px solid transparent;
}

.hm-nav .hm-menu > li:hover > a,
.hm-nav .hm-menu > li.current-menu-item > a,
.hm-nav .hm-menu > li.current-menu-ancestor > a{
  border-bottom-color:#cfcfcf;
}

.hm-nav .hm-menu > li.menu-item-has-children > a::after{
  content:"";
  width:0;
  height:0;
  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-top:5px solid #6b7280;
  transform:translateY(1px);
}

.hm-nav .hm-menu .sub-menu{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  min-width:180px;
  background:#fff;
  border:1px solid var(--hm-border);
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  padding:10px 0;
  display:none;
  z-index:50;
}

.hm-nav .hm-menu > li:hover > .sub-menu{
  display:block;
}

.hm-nav .hm-menu .sub-menu li a{
  display:block;
  padding:10px 16px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#2b2b2b;
  border-left:3px solid transparent;
}

.hm-nav .hm-menu .sub-menu li a:hover,
.hm-nav .hm-menu .sub-menu li.current-menu-item > a{
  background:#fafafa;
  border-left-color:#d1d5db;
}

@media (max-width: 900px){
  .hm-header{
    gap:12px;
  }

  .hm-burger{
    display:inline-flex;
  }

  .hm-nav{
    position:fixed;
    top:0;
    left:0;
    height:100vh;
    width:min(86vw, 320px);
    background:#fff;
    border-right:1px solid var(--hm-border);
    box-shadow:0 20px 70px rgba(0,0,0,.14);
    padding:78px 18px 18px;
    transform:translateX(-105%);
    transition:transform .25s ease;
    z-index:1000;
    justify-content:flex-start;
    overflow:auto;
  }

  .hm-nav .hm-menu{
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }

  .hm-nav .hm-menu > li > a{
    width:100%;
    padding:12px 10px;
    border-bottom:0;
    border-radius:12px;
    letter-spacing:.10em;
  }

  .hm-nav .hm-menu > li:hover > a,
  .hm-nav .hm-menu > li.current-menu-item > a,
  .hm-nav .hm-menu > li.current-menu-ancestor > a{
    background:#fafafa;
  }

  .hm-nav .hm-menu > li.menu-item-has-children > a::after{
    margin-left:auto;
  }

  .hm-nav .hm-menu .sub-menu{
    position:static;
    transform:none;
    min-width:0;
    border:0;
    box-shadow:none;
    padding:0;
    display:block;
    margin:2px 0 8px;
  }

  .hm-nav .hm-menu .sub-menu li a{
    padding:10px 10px;
    border-left:0;
    border-radius:10px;
    color:#444;
  }

  .hm-nav .hm-menu .sub-menu li a:hover,
  .hm-nav .hm-menu .sub-menu li.current-menu-item > a{
    border-left-color:transparent;
    background:#f3f4f6;
  }

  .hm-mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:999;
    opacity:0;
    pointer-events:none;
    display:block;
    transition:opacity .2s ease;
  }

  body.hm-mobile-open{
    overflow:hidden;
  }

  body.hm-mobile-open .hm-nav{
    transform:translateX(0);
  }

  body.hm-mobile-open .hm-mobile-overlay{
    opacity:1;
    pointer-events:auto;
  }
}

.hm-header-cta{
  white-space:nowrap;
  font-weight:600;
  font-size:16px;
  padding:10px 14px;
  border:1px solid var(--hm-border);
  border-radius:999px;
}

.hm-hero{
  position:relative;
  background:
    linear-gradient(to right, rgba(0,0,0,0.02) 1px, transparent 1px) 0 0/48px 48px,
    linear-gradient(to bottom, rgba(0,0,0,0.02) 1px, transparent 1px) 0 0/48px 48px;
  padding:64px 0 54px;
}

.hm-hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.hm-hero-content{position:relative;}

.hm-hero-media{position:relative; justify-self:end;}

.hm-hero-head{max-width:640px; text-align:left;}

.hm-hero-title-link{
  color:inherit;
  text-decoration:none;
}

.hm-hero-title-link:hover{text-decoration:underline;}

.hm-hero-title{
  font-size:38px;
  line-height:1.12;
  margin:0 0 10px;
}

.hm-hero-subtitle{
  margin:0;
  font-size:18px;
  color:#444;
}

.hm-hero-image{
  position:relative;
  overflow:visible;
  padding-bottom:16px;
}

.hm-hero-frame{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(0,0,0,.18);
  background:#fff;
}

.hm-hero-slider-viewport{
  position:relative;
}

.hm-hero-slider-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:100%;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  user-select:none;
  cursor:grab;
}

.hm-hero-slider-track:active{cursor:grabbing;}
.hm-hero-slider-track::-webkit-scrollbar{display:none;}

.hm-hero-slide{
  scroll-snap-align:start;
}

.hm-hero-slide img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  background:#e5e7eb;
}

@media (max-width: 640px){
  .hm-hero-slide img{height:300px;}
}

.hm-hero-slider-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:2;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(17,17,17,.52);
  color:#fff;
  cursor:pointer;
  font-size:24px;
  line-height:1;
  font-weight:900;
  display:grid;
  place-items:center;
  box-shadow:0 18px 55px rgba(0,0,0,.22);
}

.hm-hero-slider-btn--prev{right:auto; left:-56px;}
.hm-hero-slider-btn--next{left:auto; right:-56px;}

.hm-hero-slider-btn--prev-media{display:none;}

.hm-hero-slider-btn:hover{filter:brightness(1.06);}

.hm-hero-slider-btn:focus{
  outline:3px solid rgba(242,106,33,.35);
  outline-offset:2px;
}

.hm-hero-slider-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-top:12px;
  grid-column:1 / -1;
}

.hm-hero-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.22);
  background:#fff;
  cursor:pointer;
  padding:0;
}

.hm-hero-dot.is-active{
  background:var(--hm-orange);
  border-color: var(--hm-orange);
  box-shadow:0 0 0 4px rgba(242,106,33,.14);
}

.hm-orange-band{
  background:var(--hm-orange);
  color:#fff;
  padding:22px 0;
}

.hm-orange-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.hm-orange-title{
  font-weight:700;
  letter-spacing:.02em;
}

.hm-social{
  display:flex;
  gap:14px;
}

.hm-social a{
  width:34px;
  height:34px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
}

.hm-section{
  padding:54px 0;
}

.hm-section-title{
  text-align:center;
  font-size:28px;
  margin:0 0 28px;
  font-weight:700;
}

@media (max-width: 560px){
  .hm-section-title{font-size:22px;}
}

.hm-profile{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:32px;
  align-items:start;
}

.hm-card-image{
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(0,0,0,.12);
}

.hm-profile-logos{
  display:flex;
  /* gap:2px; */
  align-items:center;
  margin-bottom:10px;
}

.hm-profile-logo{
  width:88px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hm-profile-logo img{
  width:auto;
  height:56px;
  max-width:120px;
  object-fit:contain;
}

.hm-profile-divider{
  width:44px;
  height:3px;
  background:#2b59ff;
  border-radius:99px;
  margin:12px 0 16px;
}

.hm-profile-name{
  font-size:28px;
  margin:0 0 6px;
  font-weight:800;
}

.hm-profile-meta{
  color:var(--hm-muted);
  margin:0 0 12px;
  font-size:13px;
}

.hm-profile-desc{
  color:#3c3c3c;
  margin:0 0 18px;
}

.hm-family{
  background:#fff;
}

.hm-family-text{
  display:flex;
  align-items:center;
}

.hm-family-desc{
  margin:0;
  color:#3c3c3c;
  font-size:18px;
  line-height:1.85;
}

.hm-profile-data{
  border:1px solid var(--hm-border);
  background:#fff;
  border-radius:14px;
  padding:14px 14px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  margin:0 0 14px;
}

.hm-profile-data-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.hm-profile-data-list li{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap:10px;
  align-items:start;
}

.hm-profile-data-key{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--hm-muted);
  font-weight:700;
}

.hm-profile-data-val{
  color:#111;
  font-weight:650;
  font-size:13px;
  line-height:1.6;
}

.hm-profile-data-val a{color:#111;}
.hm-profile-data-val a:hover{color:var(--hm-orange);}

.hm-profile-roles{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}

.hm-profile-roles li{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(17,17,17,.08);
  background:#fafafa;
  font-size:13px;
  line-height:1.6;
  color:#2b2b2b;
}

.hm-social-muted a{
  background:#f3f4f6;
  border:1px solid var(--hm-border);
  color:#555;
}

.hm-newsletter{
  position:relative;
  padding:72px 0;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.15), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.10), transparent 40%),
    #111;
  color:#fff;
}

.hm-newsletter-inner{
  width:min(860px, calc(100% - 48px));
  margin-inline:auto;
}

.hm-newsletter-title{
  margin:0 0 8px;
  font-size:30px;
  font-weight:800;
}

.hm-newsletter-desc{
  margin:0;
  color:rgba(255,255,255,.85);
}

.hm-focus{
  background:
    radial-gradient(circle at 20% 30%, rgba(242,106,33,.10), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(43,89,255,.10), transparent 45%),
    #fff;
}

.hm-focus-title{
  text-align:center;
  font-size:38px;
  line-height:1.1;
  margin:0 0 10px;
  font-weight:800;
}

.hm-focus-subtitle{
  text-align:center;
  margin:0 auto 34px;
  max-width:760px;
  color:#4b5563;
  font-size:16px;
}

.hm-focus-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:22px;
}

@media (max-width: 980px){
  .hm-focus-grid{grid-template-columns:repeat(2, 1fr);}
}

.hm-focus-card{
  position:relative;
  background:rgba(255,255,255,.78);
  border-radius:18px;
  padding:22px 18px 18px;
  box-shadow:0 18px 55px rgba(0,0,0,.10);
  backdrop-filter: blur(4px);
  overflow:hidden;
  text-align:center;
  border:2px solid rgba(0,0,0,.08);
}

.hm-focus-icon{
  width:64px;
  height:64px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin:0 auto 14px;
  color:#111;
  background:#f3f4f6;
}

.hm-focus-icon img{
  width:70px;
  height:70px;
  object-fit:contain;
  display:block;
}

.hm-focus-card-title{
  margin:0 0 10px;
  font-size:20px;
  font-weight:800;
}

.hm-focus-card-desc{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.55;
}

.hm-focus-card-footer{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:12px;
  opacity:.9;
}

.hm-focus-card--orange{border-color:rgba(242,106,33,.65);}
.hm-focus-card--orange .hm-focus-icon{background:rgba(242,106,33,.18);}
.hm-focus-card--orange .hm-focus-card-footer{background:linear-gradient(90deg, rgba(242,106,33,.0), rgba(242,106,33,.55), rgba(242,106,33,.0));}

.hm-focus-card--gold{border-color:rgba(161,129,36,.55);}
.hm-focus-card--gold .hm-focus-icon{background:rgba(161,129,36,.18);}
.hm-focus-card--gold .hm-focus-card-footer{background:linear-gradient(90deg, rgba(161,129,36,.0), rgba(161,129,36,.55), rgba(161,129,36,.0));}

.hm-focus-card--blue{border-color:rgba(43,89,255,.55);}
.hm-focus-card--blue .hm-focus-icon{background:rgba(43,89,255,.14);}
.hm-focus-card--blue .hm-focus-card-footer{background:linear-gradient(90deg, rgba(43,89,255,.0), rgba(43,89,255,.50), rgba(43,89,255,.0));}

.hm-latest{
  background:#fff;
}

.hm-latest-title{
  text-align:center;
  font-size:32px;
  margin:0 0 10px;
  font-weight:800;
}

.hm-latest-subtitle{
  text-align:center;
  margin:0 auto 34px;
  max-width:760px;
  color:#4b5563;
  font-size:16px;
}

.hm-latest-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}

.hm-post-card{
  background:#fff;
  border:1px solid var(--hm-border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 16px 50px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
}

.hm-post-thumb{
  display:block;
  aspect-ratio: 16 / 10;
  overflow:hidden;
  background:#f3f4f6;
}

.hm-post-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hm-post-body{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.hm-post-meta{
  font-size:12px;
  color:#6b7280;
  letter-spacing:.02em;
}

.hm-post-title{
  margin:0;
  font-size:18px;
  line-height:1.25;
  font-weight:800;
}

.hm-post-title a{color:#111;}

.hm-post-excerpt{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.55;
}

.hm-post-more{
  margin-top:4px;
  align-self:flex-start;
  font-weight:700;
  font-size:13px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--hm-border);
}

.hm-post-more:hover{
  border-color:#cbd5e1;
  background:#fafafa;
}

.hm-page{
  padding:54px 0;
}

.hm-book-list{
  display:flex;
  flex-direction:column;
  gap:44px;
}

.hm-book-item{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap:34px;
  align-items:start;
}

.hm-book-cover{
  width:260px;
}

.hm-book-cover img{
  width:100%;
  height:auto;
  border-radius:10px;
  box-shadow:0 18px 55px rgba(0,0,0,.14);
}

.hm-book-title{
  margin:0 0 10px;
  font-size:26px;
  font-weight:900;
  line-height:1.2;
  color:var(--hm-orange);
}

.hm-book-desc{
  margin:0 0 16px;
  color:#111;
  font-size:14px;
  line-height:1.65;
  max-width:720px;
}

.hm-book-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  background:var(--hm-orange);
  color:#fff;
  border-radius:6px;
  font-weight:800;
  font-size:13px;
}

.hm-book-btn:hover{
  filter:brightness(.95);
}

.hm-contact{
  background:#f5f5f5;
  padding:70px 0;
}

.hm-contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.hm-contact-left,
.hm-contact-right{
  display:flex;
  flex-direction:column;
}

.hm-contact-left-card{
  height:100%;
  background:#fff;
  border:1px solid var(--hm-border);
  border-radius:18px;
  box-shadow:0 18px 55px rgba(0,0,0,.08);
  padding:20px 18px;
}

.hm-contact-left-card .hm-contact-title{margin-top:0;}

.hm-contact-left-card .hm-contact-subtitle{max-width:none;}

.hm-contact-left-card .hm-contact-list li{box-shadow:none;}

.hm-contact-form-card{height:100%;}

.hm-contact-title{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.15;
  font-weight:900;
}

.hm-contact-subtitle{
  margin:0 0 18px;
  color:#4b5563;
  font-size:15px;
  line-height:1.6;
  max-width:520px;
}

.hm-contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}

.hm-contact-list li{
  display:flex;
  gap:12px;
  padding:14px 14px;
  background:#fff;
  border:1px solid var(--hm-border);
  border-radius:16px;
  box-shadow:0 14px 40px rgba(0,0,0,.06);
}

.hm-contact-icon{
  width:38px;
  height:38px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(242,106,33,.12);
  flex:0 0 auto;
}

.hm-contact-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#6b7280;
  margin-bottom:2px;
  font-weight:700;
}

.hm-contact-value{
  color:#111;
  font-weight:700;
  font-size:14px;
}

.hm-contact-value,
.hm-contact-value a{
  overflow-wrap:anywhere;
  word-break:break-word;
}

.hm-contact-value a{color:#111;}
.hm-contact-value a:hover{color:var(--hm-orange);}

.hm-contact-icon svg{display:block;}

.hm-contact-form-card{
  background:#fff;
  border:1px solid var(--hm-border);
  border-radius:18px;
  box-shadow:0 18px 55px rgba(0,0,0,.08);
  padding:20px 18px;
}

.hm-contact-form-title{
  margin:0 0 8px;
  font-size:22px;
  font-weight:900;
}

.hm-contact-form-desc{
  margin:0 0 16px;
  color:#4b5563;
  font-size:14px;
  line-height:1.6;
}

.hm-contact-form-placeholder{
  padding:16px;
  border-radius:16px;
  border:1px dashed #d1d5db;
  background:#fafafa;
  color:#6b7280;
  font-size:13px;
  line-height:1.6;
}

.hm-contact-disclaimer{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--hm-border);
  color:#6b7280;
  font-size:13px;
  line-height:1.6;
}

.hm-contact-form input[type="text"],
.hm-contact-form input[type="email"],
.hm-contact-form input[type="tel"],
.hm-contact-form input[type="number"],
.hm-contact-form input[type="url"],
.hm-contact-form select,
.hm-contact-form textarea{
  width:100%;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
}

.hm-contact-form textarea{min-height:84px; resize:vertical;}

.hmcf-form textarea#hmcf_aspirasi{min-height:14px; resize:vertical;}

.hm-contact-form .hmcf-verify-row{
  display:flex;
  gap:12px;
  align-items:flex-end;
}

.hmcf-verify-row{
  display:flex;
  gap:12px;
  align-items:flex-end;
}

.hmcf-verify-field{flex:1 1 auto;}

.hmcf-verify-actions{flex:0 0 auto;}

.hmcf-verify-actions .hmcf-submit{white-space:nowrap;}

.hmcf-verify-actions .hmcf-submit{
  padding:12px 18px;
  line-height:1;
  height:44px;
}

.hmcf-help-line{
  margin-top:6px;
  color:#6b7280;
  font-size:13px;
}

.hm-contact-form .hmcf-verify-field{flex:1 1 auto;}

.hm-contact-form .hmcf-verify-actions{flex:0 0 auto;}

.hm-contact-form .hmcf-verify-actions .hmcf-submit{white-space:nowrap;}

@media (max-width: 560px){
  .hm-contact-form .hmcf-verify-row{flex-direction:column; align-items:stretch;}
  .hm-contact-form .hmcf-verify-actions .hmcf-submit{width:100%;}
}

@media (max-width: 560px){
  .hmcf-verify-row{flex-direction:column; align-items:stretch;}
  .hmcf-verify-actions .hmcf-submit{width:100%;}
}

@media (max-width: 900px){
  .hm-contact{padding:54px 0;}
  .hm-contact-grid{grid-template-columns:1fr; gap:18px;}
  .hm-contact-left-card,
  .hm-contact-form-card{padding:18px 16px;}
  .hm-contact-title{font-size:28px;}
  .hm-contact-list li{padding:12px 12px;}
}

.hm-contact-form input:focus,
.hm-contact-form select:focus,
.hm-contact-form textarea:focus{
  border-color:rgba(242,106,33,.65);
  box-shadow:0 0 0 4px rgba(242,106,33,.12);
}

.hm-contact-form button,
.hm-contact-form input[type="submit"],
.hm-contact-form .wpforms-submit,
.hm-contact-form .wpcf7-submit{
  background:var(--hm-orange);
  color:#fff;
  border:none;
  border-radius:30px;
  padding:12px 18px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 40px rgba(242,106,33,.22);
}

.hm-contact-form button:hover,
.hm-contact-form input[type="submit"]:hover,
.hm-contact-form .wpforms-submit:hover,
.hm-contact-form .wpcf7-submit:hover{
  filter:brightness(.96);
}

.hm-contact-form-notice{
  margin:0 0 14px;
  padding:12px 14px;
  border-radius:14px;
  font-size:13px;
  line-height:1.5;
  border:1px solid var(--hm-border);
}

.hm-contact-form-notice--success{
  background:#ecfdf5;
  border-color:#a7f3d0;
  color:#065f46;
}

.hm-contact-form-notice--error{
  background:#fef2f2;
  border-color:#fecaca;
  color:#991b1b;
}

.hm-portfolio{
  padding:80px 0;
  background:linear-gradient(#ffffff, #f6f6f6);
}

.hm-portfolio-header{
  text-align:center;
  margin-bottom:34px;
}

.hm-portfolio-title{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:-.02em;
}

.hm-portfolio-subtitle{
  margin:0 auto;
  max-width:760px;
  color:#5b5f66;
  font-size:15px;
  line-height:1.75;
}

.hm-portfolio-divider{
  width:86px;
  height:3px;
  background:linear-gradient(90deg, transparent, #C6A85B, transparent);
  border-radius:999px;
  margin:18px auto 0;
  opacity:.9;
}

.hm-portfolio-stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin:28px 0 34px;
}

.hm-portfolio-stat{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(198,168,91,.35);
  border-radius:12px;
  padding:18px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
  backdrop-filter: blur(6px);
  text-align:center;
}

.hm-portfolio-stat-number{
  font-size:28px;
  line-height:1.1;
  font-weight:900;
  color:#C6A85B;
  letter-spacing:-.01em;
  margin-bottom:6px;
}

.hm-portfolio-stat-label{
  font-size:13px;
  color:#5b5f66;
  font-weight:650;
}

.hm-portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.hm-portfolio-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(198,168,91,.55);
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.hm-portfolio-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(0,0,0,.08);
  border-color: rgba(198,168,91,.85);
}

.hm-portfolio-media{
  position:relative;
  height:180px;
  background:
    radial-gradient(circle at 25% 35%, rgba(198,168,91,.22), transparent 48%),
    radial-gradient(circle at 85% 25%, rgba(242,106,33,.14), transparent 45%),
    linear-gradient(135deg, rgba(17,17,17,.02), rgba(17,17,17,.06));
  border-bottom:1px solid rgba(198,168,91,.35);
}

.hm-portfolio-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hm-gallery-slider{
  background:
    radial-gradient(circle at 20% 25%, rgba(242,106,33,.08), transparent 45%),
    radial-gradient(circle at 80% 55%, rgba(17,17,17,.06), transparent 45%),
    #fff;
}

.hm-gallery-slider-head{
  text-align:center;
  margin-bottom:22px;
}

.hm-gallery-slider-title{
  margin:0 0 10px;
  font-size:34px;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.15;
}

.hm-gallery-slider-subtitle{
  margin:0 auto;
  max-width:860px;
  color:#5b5f66;
  font-size:15px;
  line-height:1.75;
}

.hm-gallery-slider-shell{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(17,17,17,.08);
  border-radius:18px;
  padding:14px;
  box-shadow:0 16px 44px rgba(0,0,0,.06);
}

.hm-gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.hm-gallery-slider-viewport{
  position:relative;
}

.hm-gallery-slider-btn{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.14);
  background:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  font-weight:900;
  display:grid;
  place-items:center;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.hm-gallery-slider-btn--prev,
.hm-gallery-slider-btn--next{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:2;
  width:44px;
  height:44px;
  background:rgba(255,255,255,.92);
  border-color: rgba(17,17,17,.18);
  box-shadow:0 14px 40px rgba(0,0,0,.12);
}

.hm-gallery-slider-btn--prev{left:10px;}
.hm-gallery-slider-btn--next{right:10px;}

.hm-gallery-slider-btn--prev:hover,
.hm-gallery-slider-btn--next:hover{
  transform: translateY(-50%) translateY(-1px);
  border-color: rgba(242,106,33,.35);
}

.hm-gallery-slider-btn--prev:focus,
.hm-gallery-slider-btn--next:focus{
  outline:3px solid rgba(242,106,33,.28);
  outline-offset:2px;
}

.hm-gallery-slider-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(242,106,33,.35);
}

.hm-gallery-slider-dots{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  justify-content:center;
  margin-top:12px;
}

.hm-gallery-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.22);
  background:#fff;
  cursor:pointer;
  padding:0;
}

.hm-gallery-dot.is-active{
  background:var(--hm-orange);
  border-color: var(--hm-orange);
  box-shadow:0 0 0 4px rgba(242,106,33,.14);
}

.hm-gallery-slider-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom:6px;
  user-select:none;
  cursor:grab;
}

.hm-gallery-slider-track{
  padding-inline:56px;
}

.hm-gallery-slider-track:active{cursor:grabbing;}

.hm-gallery-slider-track::-webkit-scrollbar{height:8px;}
.hm-gallery-slider-track::-webkit-scrollbar-thumb{background:rgba(17,17,17,.18); border-radius:99px;}
.hm-gallery-slider-track::-webkit-scrollbar-track{background:transparent;}

.hm-gallery-slide{
  margin:0;
  background:#fff;
  border:1px solid rgba(17,17,17,.10);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.05);
  scroll-snap-align:start;
}

.hm-gallery-slide-media{
  height:180px;
  background:
    radial-gradient(circle at 25% 30%, rgba(242,106,33,.12), transparent 55%),
    linear-gradient(135deg, rgba(17,17,17,.04), rgba(17,17,17,.08));
}

.hm-gallery-slide-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hm-gallery-slide-caption{
  padding:10px 12px 12px;
  font-size:12px;
  line-height:1.55;
  color:#2b2b2b;
  font-weight:800;
}

@media (max-width: 980px){
  .hm-gallery-grid{grid-template-columns:repeat(2, 1fr);}
}

@media (max-width: 560px){
  .hm-gallery-slider-title{font-size:28px;}
  .hm-gallery-grid{grid-template-columns:1fr;}
}

.hm-report{
  background:
    radial-gradient(circle at 18% 25%, rgba(242,106,33,.10), transparent 45%),
    radial-gradient(circle at 82% 30%, rgba(43,89,255,.10), transparent 42%),
    linear-gradient(#fff, #f7f7f7);
}

.hm-report-head{
  text-align:center;
  margin-bottom:28px;
}

.hm-report-title{
  margin:0 0 10px;
  font-size:38px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.02em;
}

.hm-report-subtitle{
  margin:0 auto;
  max-width:820px;
  color:#5b5f66;
  font-size:15px;
  line-height:1.75;
}

.hm-report-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}

.hm-report-cover{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(242,106,33,.22);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 16px 44px rgba(0,0,0,.08);
}

.hm-report-cover-media{
  position:relative;
  height:360px;
  background:
    radial-gradient(circle at 30% 35%, rgba(242,106,33,.22), transparent 55%),
    radial-gradient(circle at 80% 25%, rgba(17,17,17,.12), transparent 60%),
    linear-gradient(135deg, rgba(17,17,17,.04), rgba(17,17,17,.10));
  border-bottom:1px solid rgba(17,17,17,.06);
}

.hm-report-cover-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hm-report-cover-badge{
  position:absolute;
  top:14px;
  left:14px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(17,17,17,.78);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
}

.hm-report-cover-body{
  padding:16px 16px 18px;
}

.hm-report-cover-title{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
  line-height:1.25;
}

.hm-report-cover-meta{
  margin:0 0 14px;
  color:#5b5f66;
  font-size:13px;
  line-height:1.6;
}

.hm-report-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.hm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 16px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  text-decoration:none;
  border:1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, background .16s ease, border-color .16s ease;
}

.hm-btn:hover{transform: translateY(-1px);}

.hm-btn--orange{
  background:var(--hm-orange);
  color:#fff;
  box-shadow:0 14px 40px rgba(242,106,33,.22);
}

.hm-btn--orange:hover{filter:brightness(.97);}

.hm-btn--dark{
  background:#111;
  color:#fff;
  box-shadow:0 14px 40px rgba(0,0,0,.18);
}

.hm-btn--ghost{
  background:#fff;
  color:#111;
  border-color:rgba(17,17,17,.14);
}

.hm-btn--ghost:hover{border-color:rgba(242,106,33,.35);}

.hm-report-qr{
  margin-top:14px;
  border-top:1px dashed rgba(17,17,17,.16);
  padding-top:14px;
  display:grid;
  grid-template-columns: 86px 1fr;
  gap:12px;
  align-items:center;
}

.hm-report-qr img{
  width:86px;
  height:86px;
  border-radius:14px;
  border:1px solid rgba(17,17,17,.12);
  background:#fff;
  object-fit:cover;
  display:block;
}

.hm-report-qr p{
  margin:0;
  color:#5b5f66;
  font-size:13px;
  line-height:1.6;
}

.hm-report-content{
  display:grid;
  gap:14px;
}

.hm-accordion{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(242,106,33,.18);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.06);
}

.hm-accordion-btn{
  width:100%;
  border:none;
  background:transparent;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:900;
  cursor:pointer;
  color:#111;
}

.hm-accordion-icon{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(242,106,33,.10);
  color:var(--hm-orange);
  font-size:20px;
  line-height:1;
}

.hm-accordion-panel{
  padding:0 16px 16px;
}

.hm-report-summary p{
  margin:0 0 10px;
  color:#2b2b2b;
  line-height:1.75;
  font-size:14px;
}

.hm-report-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.hm-report-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(17,17,17,.04);
  border:1px solid rgba(17,17,17,.08);
  font-size:12px;
  font-weight:800;
  color:#222;
}

.hm-report-toc{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(17,17,17,.08);
  border-radius:16px;
  padding:14px 16px;
  box-shadow:0 12px 28px rgba(0,0,0,.05);
}

.hm-report-block-title{
  margin:0 0 10px;
  font-size:15px;
  font-weight:900;
}

.hm-report-toc-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.hm-report-toc-list li{
  display:grid;
  grid-template-columns: 12px 1fr auto;
  gap:10px;
  align-items:center;
  padding:10px 10px;
  border-radius:12px;
  background:rgba(242,106,33,.06);
  border:1px solid rgba(242,106,33,.14);
}

.hm-report-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--hm-orange);
  box-shadow:0 0 0 4px rgba(242,106,33,.12);
}

.hm-report-toc-label{
  font-weight:900;
  color:#111;
  font-size:13px;
}

.hm-report-toc-page{
  font-weight:900;
  color:#111;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  opacity:.9;
}

.hm-report-endorse{
  background:linear-gradient(135deg, rgba(17,17,17,.88), rgba(17,17,17,.96));
  border-radius:16px;
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 16px 44px rgba(0,0,0,.12);
}

.hm-report-endorse-inner{padding:16px;}

.hm-report-endorse-quote{
  margin:0 0 10px;
  font-size:14px;
  line-height:1.75;
  color:rgba(255,255,255,.92);
}

.hm-report-endorse-by{
  margin:0 0 14px;
  font-size:12px;
  color:rgba(255,255,255,.80);
  font-weight:800;
}

.hm-report-cta--end{margin-top:6px;}

.hm-gallery{
  background:
    radial-gradient(circle at 20% 25%, rgba(242,106,33,.08), transparent 45%),
    radial-gradient(circle at 80% 55%, rgba(43,89,255,.08), transparent 45%),
    #fff;
}

.hm-gallery-head{
  text-align:center;
  margin-bottom:26px;
}

.hm-gallery-title{
  margin:0 0 10px;
  font-size:34px;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.15;
}

.hm-gallery-subtitle{
  margin:0 auto;
  max-width:860px;
  color:#5b5f66;
  font-size:15px;
  line-height:1.75;
}

.hm-timeline{
  margin-top:18px;
  display:grid;
  gap:14px;
}

.hm-timeline-item{
  display:grid;
  grid-template-columns: 54px 1fr;
  gap:14px;
  align-items:stretch;
}

.hm-timeline-marker{
  position:relative;
  display:flex;
  justify-content:center;
}

.hm-timeline-marker::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:2px;
  background:rgba(17,17,17,.10);
}

.hm-timeline-num{
  width:38px;
  height:38px;
  border-radius:999px;
  background:var(--hm-orange);
  color:#fff;
  font-weight:900;
  display:grid;
  place-items:center;
  box-shadow:0 14px 40px rgba(242,106,33,.24);
  position:relative;
  z-index:1;
}

.hm-timeline-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(17,17,17,.10);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.06);
  display:grid;
  grid-template-columns: 160px 1fr;
  min-height:120px;
}

.hm-timeline-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hm-timeline-body{padding:14px 14px 14px;}

.hm-timeline-date{
  margin:0 0 6px;
  color:var(--hm-orange);
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.hm-timeline-title{
  margin:0 0 8px;
  font-size:16px;
  font-weight:900;
  line-height:1.25;
}

.hm-timeline-desc{
  margin:0;
  color:#2b2b2b;
  font-size:13px;
  line-height:1.75;
}

.hm-gallery-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.hm-gallery-item{
  margin:0;
  background:#fff;
  border:1px solid rgba(17,17,17,.10);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.05);
}

.hm-gallery-btn{
  border:none;
  background:transparent;
  padding:0;
  width:100%;
  cursor:pointer;
}

.hm-gallery-btn img{
  width:100%;
  height:150px;
  object-fit:cover;
  display:block;
  transition: transform .18s ease;
}

.hm-gallery-item:hover .hm-gallery-btn img{transform: scale(1.03);}

.hm-gallery-caption{
  padding:10px 12px 12px;
  font-size:12px;
  line-height:1.55;
  color:#2b2b2b;
  font-weight:700;
}

.hm-gallery-cta{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.hm-lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
}

.hm-lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
}

.hm-lightbox-dialog{
  position:relative;
  width:min(980px, calc(100% - 28px));
  margin:64px auto 0;
  background:#111;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 24px 80px rgba(0,0,0,.35);
}

.hm-lightbox-close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(17,17,17,.55);
  color:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  display:grid;
  place-items:center;
}

.hm-lightbox-img{
  width:100%;
  height:520px;
  object-fit:contain;
  display:block;
  background:#000;
}

.hm-lightbox-caption{
  margin:0;
  padding:12px 14px 14px;
  color:rgba(255,255,255,.86);
  font-size:13px;
  line-height:1.6;
}

@media (max-width: 980px){
  .hm-report-grid{grid-template-columns: 1fr;}
  .hm-report-cover-media{height:320px;}
  .hm-gallery-grid{grid-template-columns:repeat(2, 1fr);}
  .hm-timeline-card{grid-template-columns: 120px 1fr;}
  .hm-lightbox-img{height:420px;}
}

@media (max-width: 560px){
  .hm-report-title{font-size:30px;}
  .hm-gallery-title{font-size:28px;}
  .hm-report-cover-media{height:260px;}
  .hm-gallery-grid{grid-template-columns:1fr;}
  .hm-timeline-item{grid-template-columns: 44px 1fr;}
  .hm-timeline-card{grid-template-columns: 1fr;}
  .hm-timeline-thumb img{height:180px;}
  .hm-lightbox-dialog{margin-top:28px;}
  .hm-lightbox-img{height:320px;}
}

.hm-portfolio-badge{
  position:absolute;
  top:14px;
  left:14px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(17,17,17,.72);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.hm-portfolio-badge::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:#C6A85B;
  box-shadow: 0 0 0 4px rgba(198,168,91,.18);
}

.hm-portfolio-body{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.hm-portfolio-card-title{
  margin:0;
  font-size:18px;
  line-height:1.25;
  font-weight:900;
  letter-spacing:-.01em;
}

.hm-portfolio-card-desc{
  margin:0;
  color:#5b5f66;
  font-size:13.5px;
  line-height:1.75;
  display:-webkit-box;
  line-clamp:3;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:calc(1.75em * 3);
}

.hm-portfolio-actions{
  margin-top:auto;
  padding-top:6px;
}

.hm-portfolio-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid rgba(198,168,91,.95);
  color:#b79645;
  background:transparent;
  font-weight:900;
  font-size:12.5px;
  letter-spacing:.03em;
  text-transform:uppercase;
  transition: background-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.hm-portfolio-btn:hover{
  background:#C6A85B;
  color:#111;
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(198,168,91,.18);
}

.hm-portfolio-btn svg{
  width:16px;
  height:16px;
  flex:0 0 auto;
}

@media (max-width: 1024px){
  .hm-portfolio-title{font-size:30px;}
  .hm-portfolio-stats{grid-template-columns:repeat(2, 1fr);}
  .hm-portfolio-grid{grid-template-columns:repeat(2, 1fr);}
}

@media (max-width: 620px){
  .hm-portfolio{padding:64px 0;}
  .hm-portfolio-title{font-size:26px;}
  .hm-portfolio-subtitle{font-size:14px;}
  .hm-portfolio-stats{grid-template-columns:1fr;}
  .hm-portfolio-grid{grid-template-columns:1fr;}
  .hm-portfolio-media{height:170px;}
}

.hm-latest-empty{
  text-align:center;
  color:#6b7280;
  margin:0;
}

.hm-footer{
  color:#333;
}

.hm-footer-cta{
  background:#111;
  color:#fff;
  padding:80px 0;
  text-align:center;
}

.hm-footer-cta-title{
  margin:0 0 12px;
  font-size:30px;
  font-weight:800;
  line-height:1.2;
}

.hm-footer-cta-desc{
  margin:0 auto 24px;
  max-width:860px;
  color:rgba(255,255,255,.82);
  font-size:15px;
}

.hm-footer-cta-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.hm-footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:#fff;
  color:#111;
  font-weight:800;
  font-size:13px;
}

.hm-footer-btn--ghost{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.35);
}

.hm-footer-main{
  background:#f5f5f5;
  padding:60px 0;
}

.hm-footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:38px;
}

.hm-footer h4{
  margin:0 0 12px;
  color:#111;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.hm-footer-about-name{
  font-weight:900;
  font-size:18px;
  margin-bottom:2px;
}

.hm-footer-about-role{
  font-weight:700;
  color:#555;
  font-size:13px;
  margin-bottom:12px;
}

.hm-footer-about-desc{
  margin:0 0 14px;
  color:#444;
  font-size:14px;
  line-height:1.6;
}

.hm-footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.hm-footer-list a{
  color:#333;
}

.hm-footer-list a:hover{
  color:#b78b2a;
}

.hm-footer-mini-btn{
  margin-top:14px;
  display:inline-flex;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid #ddd;
  background:#fff;
  font-weight:800;
  font-size:13px;
}

.hm-footer-mini-btn:hover{
  border-color:#cdbb8a;
}

.hm-footer-bottom{
  background:#e9e9e9;
  padding:18px 0;
}

.hm-footer-bottom-text{
  text-align:center;
  color:#555;
  font-size:13px;
}

.hm-scroll-top{
  position:fixed;
  right:16px;
  bottom:16px;
  width:36px;
  height:36px;
  border-radius:10px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.6;
}

@media (max-width: 900px){
  .hm-hero-inner{grid-template-columns:1fr; gap:18px;}
  .hm-hero-head{max-width:920px; margin-left:auto; margin-right:auto; text-align:center;}
  .hm-hero-title-link{text-decoration:none;}
  .hm-hero-content .hm-hero-slider-btn--prev{display:none;}
  .hm-hero-image .hm-hero-slider-btn--prev,
  .hm-hero-image .hm-hero-slider-btn--next{display:grid;}
  .hm-hero-slider-btn--prev-media{display:grid;}
  .hm-hero-image .hm-hero-slider-btn--prev{left:10px; right:auto;}
  .hm-hero-image .hm-hero-slider-btn--next{right:10px; left:auto;}
  .hm-nav{justify-content:flex-start; overflow:auto;}
  .hm-header{gap:14px;}
  .hm-profile{grid-template-columns:1fr;}
  .hm-hero-title{font-size:36px;}
  .hm-footer-grid{grid-template-columns:1fr;}

  .hm-focus-grid{grid-template-columns:1fr;}
  .hm-latest-grid{grid-template-columns:1fr;}

  .hm-book-item{grid-template-columns:1fr;}
  .hm-book-cover{width:min(340px, 100%);}

  .hm-contact-grid{grid-template-columns:1fr;}
}
