/* ==========================
   Howling Dogs Grooming - Refresh
   Drop-in CSS for sections after Welcome + Footer
   ========================== */

:root{
  --hdg-bg: #ffffff;
  --hdg-soft: #f6f7fb;
  --hdg-card: #ffffff;
  --hdg-text: #1f2937;
  --hdg-muted: #6b7280;
  --hdg-border: rgba(17,24,39,.10);

  --hdg-brand: #f2992e;      /* warm orange */
  --hdg-brand-2: #2bb673;    /* friendly green */
  --hdg-dark: #0f172a;       /* footer dark */
}

body{
  color: var(--hdg-text);
}

/* section rhythm */
.hdg-section{
  padding: 80px 0;
}
@media (max-width: 767px){
  .hdg-section{ padding: 56px 0; }
}

/* headings */
.hdg-title{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .2px;
}
.hdg-subtitle{
  margin: 0 auto 28px;
  max-width: 780px;
  color: var(--hdg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* card */
.hdg-card{
  background: var(--hdg-card);
  border: 1px solid var(--hdg-border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  overflow: hidden;
}
.hdg-card__body{
  padding: 22px 22px;
}
.hdg-card__title{
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 18px;
}
.hdg-card__text{
  color: var(--hdg-muted);
  line-height: 1.6;
  margin: 0;
}
.hdg-card__list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--hdg-text);
}
.hdg-card__list li{ margin: 6px 0; }

.hdg-badge{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(242,153,46,.12);
  color: #a85d09;
  font-weight: 700;
  font-size: 12px;
}

/* simple “equal height” rows using flex without relying on Bootstrap 4/5 */
.hdg-row-flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hdg-row-flex > [class*="col-"]{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.hdg-row-flex .hdg-card{
  width: 100%;
}

/* icon service items */
.hdg-service{
  text-align: center;
  padding: 22px 18px;
}
.hdg-service img{
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 6px auto 12px;
}
.hdg-service h4{
  font-weight: 800;
  margin: 0 0 10px;
}
.hdg-service p{
  margin: 0;
  color: var(--hdg-muted);
  line-height: 1.6;
}

/* contact CTA panel */
.hdg-cta{
  background: linear-gradient(135deg, rgba(43,182,115,.12), rgba(242,153,46,.10));
  border: 1px solid var(--hdg-border);
  border-radius: 18px;
  padding: 26px;
}
.hdg-cta .hdg-cta__grid{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
.hdg-cta .hdg-cta__grid .theme_button{
  flex: 1 1 220px;
  margin: 0;
  border-radius: 12px;
}

/* About + Team images */
.hdg-photo{
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--hdg-border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}
.hdg-team__img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px){
  .hdg-team__img{ height: 200px; }
}
.hdg-team__role{
  margin: 6px 0 12px;
  color: var(--hdg-muted);
  font-weight: 700;
}

/* reviews */
.hdg-testimonial blockquote{
  border: 0;
  margin: 0;
  padding: 0;
}
.hdg-quote{
  font-size: 16px;
  line-height: 1.7;
  color: var(--hdg-text);
  margin: 0 0 14px;
}
.hdg-client{
  font-weight: 800;
  margin: 0;
}
.hdg-client-meta{
  color: var(--hdg-muted);
  margin: 0;
  font-size: 13px;
}

/* footer */
.hdg-footer{
  background: var(--hdg-dark);
  color: rgba(255,255,255,.86);
  padding: 54px 0 0;
}
.hdg-footer a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
.hdg-footer a:hover{
  color: #fff;
  text-decoration: underline;
}
.hdg-footer__title{
  font-weight: 900;
  margin: 0 0 14px;
  color: #fff;
}
.hdg-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.hdg-footer__list li{
  margin: 8px 0;
}
.hdg-footer__bar{
  margin-top: 34px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

/* small helper */
.hdg-note{
  color: var(--hdg-muted);
  font-size: 13px;
  line-height: 1.55;
}
.hdg-alert{
  border: 1px solid rgba(242,153,46,.35);
  background: rgba(242,153,46,.10);
  padding: 12px 14px;
  border-radius: 12px;
  color: #7a4b12;
  font-weight: 700;
}
/* ==========================
   Terms page styling
   Works with hdg-refresh.css too, but can stand alone.
   ========================== */

:root{
  --hdg-soft: #f6f7fb;
  --hdg-border: rgba(17,24,39,.10);
  --hdg-text: #1f2937;
  --hdg-muted: #6b7280;
  --hdg-card: #ffffff;
  --hdg-brand: #f2992e;
  --hdg-dark: #0f172a;
}

.hdg-terms{
  padding: 70px 0;
  background: var(--hdg-soft);
}

.hdg-terms .hdg-terms__wrap{
  max-width: 980px;
  margin: 0 auto;
}

.hdg-terms .hdg-hero{
  text-align: center;
  margin-bottom: 22px;
}

.hdg-terms .hdg-hero h1{
  font-weight: 900;
  letter-spacing: .2px;
  margin: 0 0 10px;
  color: var(--hdg-text);
}

.hdg-terms .hdg-hero p{
  margin: 0;
  color: var(--hdg-muted);
  line-height: 1.6;
}

.hdg-terms .hdg-updated{
  display: inline-block;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(242,153,46,.35);
  background: rgba(242,153,46,.10);
  color: #7a4b12;
  font-weight: 800;
  font-size: 12px;
}

.hdg-terms .hdg-card{
  background: var(--hdg-card);
  border: 1px solid var(--hdg-border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.hdg-terms .hdg-card__body{
  padding: 22px;
}

.hdg-terms .hdg-intro{
  color: var(--hdg-muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.hdg-terms .hdg-toc{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hdg-terms .hdg-toc a{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--hdg-border);
  background: #fff;
  color: var(--hdg-text);
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
}

.hdg-terms .hdg-toc a:hover{
  border-color: rgba(242,153,46,.45);
}

.hdg-terms .hdg-term{
  padding: 18px 0;
  border-top: 1px solid var(--hdg-border);
}

.hdg-terms .hdg-term:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.hdg-terms .hdg-term h3{
  font-weight: 900;
  margin: 0 0 10px;
  font-size: 18px;
}

.hdg-terms .hdg-term p,
.hdg-terms .hdg-term li{
  color: var(--hdg-muted);
  line-height: 1.7;
}

.hdg-terms .hdg-term ul{
  margin: 10px 0 0;
  padding-left: 18px;
}

.hdg-terms .hdg-callout{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, .04);
  border: 1px solid var(--hdg-border);
  color: var(--hdg-text);
}

.hdg-terms .hdg-callout--warn{
  background: rgba(242,153,46,.10);
  border-color: rgba(242,153,46,.35);
}

.hdg-terms .hdg-img{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--hdg-border);
  margin-top: 12px;
}

.hdg-terms .hdg-bottom{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hdg-terms .hdg-bottom a.btn{
  border-radius: 12px;
  font-weight: 800;
}

@media (max-width: 767px){
  .hdg-terms{ padding: 52px 0; }
  .hdg-terms .hdg-card__body{ padding: 18px; }
}

/* ==========================
   EMMI page styling
   ========================== */

:root{
  --hdg-soft: #f6f7fb;
  --hdg-border: rgba(17,24,39,.10);
  --hdg-card: #ffffff;
  --hdg-text: #1f2937;
  --hdg-muted: #6b7280;
  --hdg-brand: #f2992e;
}

.hdg-emmi{
  padding: 70px 0;
  background: var(--hdg-soft);
}

.hdg-emmi__wrap{
  max-width: 980px;
  margin: 0 auto;
}

.hdg-emmi__hero{
  text-align: center;
  margin-bottom: 22px;
}

.hdg-emmi__hero h1{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--hdg-text);
}

.hdg-emmi__hero p{
  margin: 0;
  color: var(--hdg-muted);
  line-height: 1.6;
}

.hdg-card{
  background: var(--hdg-card);
  border: 1px solid var(--hdg-border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.hdg-card__body{
  padding: 22px;
}

.hdg-section-title{
  font-weight: 900;
  margin: 0 0 10px;
  font-size: 18px;
}

.hdg-text{
  color: var(--hdg-muted);
  line-height: 1.75;
  margin: 0 0 14px;
}

.hdg-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--hdg-muted);
  line-height: 1.7;
}

.hdg-callout{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(242,153,46,.35);
  background: rgba(242,153,46,.10);
  color: #7a4b12;
  font-weight: 700;
}

.hdg-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.hdg-grid > div{
  flex: 1 1 260px;
}

.hdg-price{
  font-size: 16px;
  font-weight: 900;
  color: var(--hdg-text);
}

.hdg-muted{
  color: var(--hdg-muted);
  line-height: 1.65;
  margin: 6px 0 0;
}

.hdg-cta{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hdg-cta a.btn{
  border-radius: 12px;
  font-weight: 800;
}

@media (max-width: 767px){
  .hdg-emmi{ padding: 52px 0; }
  .hdg-card__body{ padding: 18px; }
}

/* ==========================
   Review Us page styling
   ========================== */

:root{
  --hdg-soft: #f6f7fb;
  --hdg-border: rgba(17,24,39,.10);
  --hdg-card: #ffffff;
  --hdg-text: #1f2937;
  --hdg-muted: #6b7280;
}

.hdg-review{
  padding: 70px 0;
  background: var(--hdg-soft);
}

.hdg-review__wrap{
  max-width: 980px;
  margin: 0 auto;
}

.hdg-review__hero{
  text-align: center;
  margin-bottom: 22px;
}

.hdg-review__hero h1{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--hdg-text);
}

.hdg-review__hero p{
  margin: 0;
  color: var(--hdg-muted);
  line-height: 1.65;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hdg-card{
  background: var(--hdg-card);
  border: 1px solid var(--hdg-border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.hdg-card__body{
  padding: 20px;
}

.hdg-review__grid{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.hdg-review__grid > div{
  flex: 1 1 260px;
}

.hdg-review__title{
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 18px;
  color: var(--hdg-text);
}

.hdg-review__text{
  margin: 0 0 14px;
  color: var(--hdg-muted);
  line-height: 1.6;
}

.hdg-review__btn{
  width: 100%;
  border-radius: 12px;
  font-weight: 800;
  padding: 12px 14px;
}

.hdg-review__note{
  margin-top: 16px;
  color: var(--hdg-muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 767px){
  .hdg-review{ padding: 52px 0; }
  .hdg-card__body{ padding: 18px; }
}

/* ==========================
   Newsletter page styling
   ========================== */

:root{
  --hdg-soft: #f6f7fb;
  --hdg-border: rgba(17,24,39,.10);
  --hdg-text: #1f2937;
  --hdg-muted: #6b7280;
  --hdg-card: #ffffff;
  --hdg-brand: #f2992e;
  --hdg-dark: #0f172a;
}

.hdg-news{
  padding: 70px 0;
  background: var(--hdg-soft);
}

.hdg-news__wrap{
  max-width: 980px;
  margin: 0 auto;
}

.hdg-news__hero{
  text-align: center;
  margin-bottom: 18px;
}

.hdg-news__hero h1{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--hdg-text);
}

.hdg-news__hero p{
  margin: 0 auto;
  max-width: 760px;
  color: var(--hdg-muted);
  line-height: 1.65;
}

.hdg-card{
  background: var(--hdg-card);
  border: 1px solid var(--hdg-border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.hdg-card__body{
  padding: 22px;
}

.hdg-badge{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(242,153,46,.12);
  color: #7a4b12;
  font-weight: 800;
  font-size: 12px;
}

.hdg-news__title{
  margin: 10px 0 6px;
  font-weight: 900;
  font-size: 20px;
  color: var(--hdg-text);
}

.hdg-news__meta{
  margin: 0 0 14px;
  color: var(--hdg-muted);
  font-size: 13px;
}

.hdg-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hdg-actions .btn{
  border-radius: 12px;
  font-weight: 800;
  padding: 10px 14px;
}

.hdg-divider{
  height: 1px;
  background: var(--hdg-border);
  margin: 18px 0;
}

.hdg-list{
  display: grid;
  gap: 12px;
}

.hdg-item{
  border: 1px solid var(--hdg-border);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.hdg-item__row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hdg-item__title{
  margin: 0;
  font-weight: 900;
  color: var(--hdg-text);
  font-size: 16px;
}

.hdg-item__meta{
  margin: 6px 0 0;
  color: var(--hdg-muted);
  font-size: 13px;
}

.hdg-item .btn{
  border-radius: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.hdg-toggle{
  width: 100%;
  border-radius: 12px;
  font-weight: 900;
  padding: 12px 14px;
}

.hdg-error{
  border: 1px solid rgba(220,53,69,.35);
  background: rgba(220,53,69,.08);
  padding: 12px 14px;
  border-radius: 12px;
  color: #842029;
  font-weight: 700;
  margin-bottom: 14px;
}

@media (max-width: 767px){
  .hdg-news{ padding: 52px 0; }
  .hdg-card__body{ padding: 18px; }
  .hdg-item__row{ flex-direction: column; align-items: stretch; }
  .hdg-item .btn{ width: 100%; }
}
