/* =========================================================================
   HARIHARAN SACRED — "Sacred Brass" (matte) design system
   Centered, symmetrical, temple-warm. Gold is a hairline/accent only.
   ========================================================================= */

:root{
  --ink:#1C1614;
  --bg-deep:#2A0F0F;
  --maroon:#5A1E1E;
  --cream:#F3EBDD;
  --cream-2:#EDE3D0;
  --brass:#A67C2E;
  --brass-hi:#C9A227;
  --saffron:#D98A2B;
  --line:rgba(166,124,46,.35);
  --line-strong:rgba(166,124,46,.6);

  --maxw:1180px;
  --gap:clamp(1rem,2vw,1.5rem);
  --pad-section:clamp(3.5rem,7vw,6rem);

  --serif:"Fraunces","Cormorant Garamond",Georgia,serif;
  --sans:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  --deva:"Mukta","Tiro Devanagari Hindi",serif;

  --shadow-soft:0 18px 50px -28px rgba(28,22,20,.45);
  --arch: polygon(0% 14%, 8% 5%, 22% 0.5%, 50% 0%, 78% 0.5%, 92% 5%, 100% 14%, 100% 100%, 0% 100%);
}

/* ---- Reset-ish ---------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  font-size:clamp(1rem,.97rem + .2vw,1.0625rem);
  line-height:1.7;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
/* Subtle paper grain on cream sections (~4%). */
body::before{
  content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;opacity:.04;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
img{max-width:100%;height:auto;display:block}
a{color:var(--brass);text-decoration:none}
a:hover{color:var(--saffron)}
h1,h2,h3,h4{font-family:var(--serif);font-weight:500;line-height:1.12;color:var(--ink);margin:0 0 .5em;font-optical-sizing:auto;letter-spacing:.2px}
h1{font-size:clamp(2.4rem,5vw,4.25rem)}
h2{font-size:clamp(1.8rem,4vw,2.6rem)}
h3{font-size:clamp(1.25rem,2.5vw,1.6rem)}
p{margin:0 0 1.1em}

.hh-icon{display:inline-block;vertical-align:middle;flex:none;color:var(--brass)}

/* ---- Layout ------------------------------------------------------------- */
.hh-wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(1.1rem,4vw,2rem)}
.hh-section{padding-block:var(--pad-section)}
.hh-section--cream2{background:var(--cream-2)}
.hh-section--deep{background:var(--bg-deep);color:#F3E7D6}
.hh-section--deep h1,.hh-section--deep h2,.hh-section--deep h3{color:#F6ECDC}
.hh-center{text-align:center}
.hh-measure{max-width:62ch;margin-inline:auto}
.hh-eyebrow{
  font-family:var(--sans);text-transform:uppercase;letter-spacing:.22em;
  font-size:.78rem;font-weight:600;color:var(--brass);margin:0 0 .9rem
}

/* ---- Buttons ------------------------------------------------------------ */
.hh-btn{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--sans);font-weight:600;font-size:.98rem;letter-spacing:.01em;
  padding:.8rem 1.5rem;border:1px solid transparent;border-radius:2px;cursor:pointer;
  transition:transform .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease;
}
.hh-btn .hh-icon{color:currentColor}
.hh-btn--saffron{background:var(--saffron);color:#2A0F0F;box-shadow:0 10px 26px -14px rgba(217,138,43,.8)}
.hh-btn--saffron:hover{background:#c87c25;color:#2A0F0F;transform:translateY(-2px)}
.hh-btn--outline{background:transparent;border-color:var(--line-strong);color:var(--brass)}
.hh-btn--outline:hover{border-color:var(--saffron);color:var(--saffron);transform:translateY(-2px)}
.hh-btn--ghost{background:transparent;border-color:rgba(243,235,221,.5);color:#F3EBDD}
.hh-btn--ghost:hover{border-color:var(--saffron);color:var(--saffron)}
.hh-btn--lg{padding:1rem 1.9rem;font-size:1.05rem}

/* ---- Trust strip -------------------------------------------------------- */
.hh-trust{font-family:var(--sans);font-weight:600;letter-spacing:.02em;margin:0}
.hh-trust__star{color:var(--brass-hi)}
.hh-trust__dot{opacity:.5;margin-inline:.35rem}
.hh-trust--light{color:#F0E2CE}

/* ---- Mandala divider ---------------------------------------------------- */
.hh-divider{display:flex;align-items:center;gap:1rem;max-width:560px;margin:clamp(2rem,4vw,3rem) auto;color:var(--brass)}
.hh-divider__rule{flex:1;height:1px;background:linear-gradient(90deg,transparent,var(--line-strong),transparent)}
.hh-divider__glyph{opacity:.85}

/* =========================================================================
   HEADER
   ========================================================================= */
.hh-header{
  position:sticky;top:0;z-index:60;
  background:var(--cream);border-bottom:1px solid var(--line);
  transition:background .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.has-transparent-header .hh-header{
  position:fixed;left:0;right:0;background:transparent;border-bottom-color:transparent;
}
.has-transparent-header .hh-header.is-solid,
.hh-header.is-solid{
  position:fixed;background:var(--cream);border-bottom-color:var(--line);box-shadow:0 6px 24px -18px rgba(28,22,20,.6)
}
.hh-header__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:74px}
.hh-brand{display:flex;align-items:center;gap:.7rem;font-family:var(--serif);font-size:1.3rem;color:var(--ink);line-height:1.05}
.hh-brand strong{font-weight:600;display:block}
.hh-brand small{font-family:var(--sans);font-size:.62rem;letter-spacing:.18em;text-transform:uppercase;color:var(--brass);font-weight:600}
.hh-brand__mark{width:40px;height:40px;color:var(--brass);flex:none}
.has-transparent-header .hh-header:not(.is-solid) .hh-brand,
.has-transparent-header .hh-header:not(.is-solid) .hh-brand strong{color:#F6ECDC}

.hh-nav{display:flex;align-items:center;gap:1.6rem}
.hh-menu{display:flex;gap:1.5rem;list-style:none;margin:0;padding:0}
.hh-menu a{
  font-family:var(--sans);font-weight:500;font-size:.96rem;color:var(--ink);
  padding:.4rem 0;position:relative;
}
.has-transparent-header .hh-header:not(.is-solid) .hh-menu a{color:#F1E4D2}
.hh-menu a::after{content:"";position:absolute;left:0;right:100%;bottom:-2px;height:2px;background:var(--saffron);transition:right .25s ease}
.hh-menu a:hover{color:var(--saffron)}
.hh-menu a:hover::after,.hh-menu .current-menu-item>a::after{right:0}
.hh-header__cta{display:inline-flex}

/* mobile menu toggle */
.hh-burger{display:none;background:none;border:0;cursor:pointer;padding:.4rem;color:var(--ink)}
.has-transparent-header .hh-header:not(.is-solid) .hh-burger{color:#F6ECDC}
.hh-burger span{display:block;width:26px;height:2px;background:currentColor;margin:5px 0;transition:.25s}

@media(max-width:900px){
  .hh-header__cta{display:none}
  .hh-burger{display:block}
  .hh-nav{
    position:fixed;inset:74px 0 auto 0;background:var(--cream);
    flex-direction:column;align-items:stretch;gap:0;padding:1rem 0;
    border-bottom:1px solid var(--line);box-shadow:var(--shadow-soft);
    transform:translateY(-120%);transition:transform .3s ease;
  }
  .hh-nav.is-open{transform:translateY(0)}
  .hh-menu{flex-direction:column;gap:0;width:100%}
  .hh-menu a{display:block;padding:.9rem 1.6rem;border-bottom:1px solid var(--line);color:var(--ink)}
}

/* =========================================================================
   HERO  (animated CSS/SVG — rotating Sri Yantra, embers, breathing glow)
   ========================================================================= */
.hh-hero{
  position:relative;min-height:clamp(620px,92vh,860px);
  display:flex;align-items:center;justify-content:center;text-align:center;
  color:#F6ECDC;overflow:hidden;isolation:isolate;
  background:radial-gradient(120% 100% at 50% 35%,#3a1414 0%,#2A0F0F 45%,#190707 100%);
}
.hh-hero__yantra,.hh-hero__glow,.hh-hero__embers,.hh-hero__om{position:absolute;inset:0;z-index:-1;pointer-events:none}
.hh-hero__yantra{display:flex;align-items:center;justify-content:center}
.hh-hero__yantra svg{
  width:min(92vw,820px);height:auto;color:var(--brass);opacity:.12;
  animation:hh-spin 90s linear infinite;transform-origin:center;
}
.hh-hero__glow{
  background:radial-gradient(40% 36% at 50% 46%,rgba(217,138,43,.42),transparent 70%);
  animation:hh-breathe 7s ease-in-out infinite;
}
.hh-hero__om{display:flex;justify-content:center;align-items:flex-start;padding-top:8vh}
.hh-hero__om span{font-family:var(--deva);font-size:clamp(4rem,12vw,9rem);color:var(--brass-hi);opacity:.08;animation:hh-pulse 6s ease-in-out infinite}

.hh-hero__embers i{
  position:absolute;bottom:-10px;width:6px;height:6px;border-radius:50%;
  background:radial-gradient(circle,rgba(217,138,43,.95),rgba(166,124,46,0));
  animation:hh-rise linear infinite;
}
@keyframes hh-spin{to{transform:rotate(360deg)}}
@keyframes hh-breathe{0%,100%{opacity:.6;transform:scale(1)}50%{opacity:1;transform:scale(1.08)}}
@keyframes hh-pulse{0%,100%{opacity:.05}50%{opacity:.13}}
@keyframes hh-rise{
  0%{transform:translateY(0) translateX(0);opacity:0}
  10%{opacity:.9}
  90%{opacity:.7}
  100%{transform:translateY(-92vh) translateX(var(--sway,20px));opacity:0}
}

.hh-hero__inner{position:relative;z-index:2;max-width:880px;padding:7rem 1.4rem 4rem}
.hh-hero .hh-eyebrow{color:var(--brass-hi)}
.hh-hero__title{color:#FBF2E3;margin-bottom:.6rem;text-shadow:0 2px 30px rgba(0,0,0,.4)}
.hh-hero__lead{font-size:clamp(1.05rem,2vw,1.3rem);color:#EAD9C2;max-width:46ch;margin:0 auto 2rem}
.hh-hero__actions{display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap;margin-bottom:1.6rem}

@media(prefers-reduced-motion:reduce){
  .hh-hero__yantra svg,.hh-hero__glow,.hh-hero__om span,.hh-hero__embers i{animation:none}
  .hh-hero__embers{display:none}
}

/* =========================================================================
   HERO IMAGE CAROUSEL (keyword slides, 1080x720)
   ========================================================================= */
.hh-heroslider{
  position:relative;overflow:hidden;background:var(--bg-deep);
  aspect-ratio:3/2;max-height:84vh;
  border-bottom:1px solid var(--line);
}
@media(min-width:1100px){.hh-heroslider{max-height:760px}}
.hh-slides{display:flex;height:100%;transition:transform .7s cubic-bezier(.5,0,.2,1);will-change:transform}
.hh-slide{flex:0 0 100%;height:100%;margin:0}
.hh-slide picture{display:block;width:100%;height:100%}
.hh-slide img{width:100%;height:100%;object-fit:cover;display:block}

.hh-slider__arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:5;
  width:52px;height:52px;border-radius:50%;border:1px solid var(--line-strong);
  background:rgba(26,7,7,.42);color:var(--cream);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  -webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);transition:.2s;
}
.hh-slider__arrow:hover{background:var(--saffron);color:#2A0F0F;border-color:var(--saffron)}
.hh-slider__arrow--prev{left:18px}
.hh-slider__arrow--prev .hh-icon{transform:rotate(180deg)}
.hh-slider__arrow--next{right:18px}

.hh-slider__dots{position:absolute;left:0;right:0;bottom:18px;display:flex;gap:.55rem;justify-content:center;z-index:5}
.hh-slider__dot{
  width:11px;height:11px;border-radius:50%;border:1px solid var(--cream);
  background:rgba(243,235,221,.25);cursor:pointer;padding:0;transition:.2s;
}
.hh-slider__dot.is-active{background:var(--saffron);border-color:var(--saffron);transform:scale(1.2)}

@media(max-width:600px){
  .hh-slider__arrow{width:42px;height:42px}
  .hh-slider__arrow--prev{left:10px}.hh-slider__arrow--next{right:10px}
}

/* Headline band carries the real H1 + primary CTA below the carousel. */
.hh-headline__title{margin:.2rem auto .7rem;max-width:18ch}
.hh-headline__actions{display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap;margin:1.6rem 0 1.2rem}

/* =========================================================================
   INTRO BAND + STATS
   ========================================================================= */
.hh-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--gap);margin-top:2.4rem}
.hh-stat{text-align:center;padding:1.2rem .6rem;border-left:1px solid var(--line)}
.hh-stat:first-child{border-left:0}
.hh-stat__num{font-family:var(--serif);font-size:clamp(1.9rem,4vw,2.7rem);color:var(--maroon);line-height:1}
.hh-stat__label{font-size:.84rem;letter-spacing:.08em;text-transform:uppercase;color:var(--brass);margin-top:.4rem}
@media(max-width:680px){.hh-stats{grid-template-columns:repeat(2,1fr)}.hh-stat:nth-child(3){border-left:0}}

/* =========================================================================
   SERVICES GRID (temple-arch tiles)
   ========================================================================= */
.hh-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1.2rem,2.5vw,2rem)}
@media(max-width:900px){.hh-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:580px){.hh-grid{grid-template-columns:1fr}}

.hh-tile{position:relative}
.hh-tile__link{
  display:flex;flex-direction:column;height:100%;
  background:var(--cream);border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
  overflow:hidden;
}
.hh-tile__link:hover{transform:translateY(-6px);border-color:var(--line-strong);box-shadow:0 26px 60px -30px rgba(28,22,20,.55)}
.hh-tile__media{
  position:relative;aspect-ratio:4/3;overflow:hidden;
  clip-path:var(--arch);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240' fill='none' stroke='%23A67C2E' stroke-width='1' opacity='0.5'><circle cx='120' cy='120' r='110'/><circle cx='120' cy='120' r='70'/><circle cx='120' cy='120' r='30'/><g><path d='M120 30c10 9 10 27 0 36-10-9-10-27 0-36Z'/><path d='M120 30c10 9 10 27 0 36-10-9-10-27 0-36Z' transform='rotate(45 120 120)'/><path d='M120 30c10 9 10 27 0 36-10-9-10-27 0-36Z' transform='rotate(90 120 120)'/><path d='M120 30c10 9 10 27 0 36-10-9-10-27 0-36Z' transform='rotate(135 120 120)'/><path d='M120 30c10 9 10 27 0 36-10-9-10-27 0-36Z' transform='rotate(180 120 120)'/><path d='M120 30c10 9 10 27 0 36-10-9-10-27 0-36Z' transform='rotate(225 120 120)'/><path d='M120 30c10 9 10 27 0 36-10-9-10-27 0-36Z' transform='rotate(270 120 120)'/><path d='M120 30c10 9 10 27 0 36-10-9-10-27 0-36Z' transform='rotate(315 120 120)'/></g></svg>") center/72% no-repeat,
    radial-gradient(120% 100% at 50% 0%,#3a1414,#2A0F0F);
  display:flex;align-items:center;justify-content:center;
}
.hh-tile__media img{width:100%;height:100%;object-fit:cover;filter:saturate(.85) contrast(.96)}
.hh-tile__placeholder{color:var(--brass);opacity:.6}
.hh-tile__badge{
  position:absolute;left:50%;bottom:-1px;transform:translateX(-50%) translateY(50%);
  width:46px;height:46px;border-radius:50%;background:var(--cream);border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;color:var(--brass);z-index:3;
}
.hh-tile__body{padding:2rem 1.5rem 1.6rem;text-align:center;display:flex;flex-direction:column;flex:1}
.hh-tile__title{font-size:1.28rem;margin:0 0 .5rem}
.hh-tile__teaser{color:#5a4a40;font-size:.96rem;margin-bottom:1.1rem;flex:1}
.hh-tile__more{
  display:inline-flex;align-items:center;gap:.35rem;justify-content:center;
  font-family:var(--sans);font-weight:600;color:var(--saffron);font-size:.92rem;position:relative;
}
.hh-tile__more::after{content:"";position:absolute;left:0;right:100%;bottom:-3px;height:2px;background:var(--saffron);transition:right .25s ease}
.hh-tile__link:hover .hh-tile__more::after{right:0}

/* =========================================================================
   ABOUT TEASER
   ========================================================================= */
.hh-about{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(1.6rem,4vw,3.5rem);align-items:center}
@media(max-width:780px){.hh-about{grid-template-columns:1fr}}
.hh-about__portrait{position:relative}
.hh-about__portrait img,.hh-portrait-frame{
  clip-path:var(--arch);border:1px solid var(--line);background:radial-gradient(120% 100% at 50% 0%,#3a1414,#2A0F0F);
  aspect-ratio:4/5;width:100%;object-fit:cover;
}
.hh-portrait-frame{display:flex;align-items:center;justify-content:center;color:var(--brass);opacity:.7}

/* =========================================================================
   WHY CHOOSE
   ========================================================================= */
.hh-why{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1.2rem,2.5vw,2rem)}
@media(max-width:900px){.hh-why{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.hh-why{grid-template-columns:1fr}}
.hh-why__item{text-align:center;padding:1.4rem 1rem;border:1px solid var(--line);background:var(--cream)}
.hh-section--deep .hh-why__item{background:rgba(243,235,221,.04);border-color:rgba(166,124,46,.35)}
.hh-why__ic{width:64px;height:64px;border-radius:50%;border:1px solid var(--line-strong);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;color:var(--brass)}
.hh-why__item h3{font-size:1.18rem;margin-bottom:.4rem}
.hh-why__item p{font-size:.94rem;margin:0;color:inherit;opacity:.85}

/* =========================================================================
   REVIEWS SLIDER
   ========================================================================= */
.hh-reviews{position:relative}
.hh-reviews__track{display:flex;gap:clamp(1rem,2.5vw,1.8rem);overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;padding-bottom:1rem;-ms-overflow-style:none;scrollbar-width:none}
.hh-reviews__track::-webkit-scrollbar{display:none}
.hh-review{
  scroll-snap-align:center;flex:0 0 min(420px,86vw);
  background:var(--cream);border:1px solid var(--line);padding:2rem 1.8rem;text-align:center;box-shadow:var(--shadow-soft);
}
.hh-review__stars{color:var(--brass-hi);letter-spacing:.15em;margin-bottom:.8rem}
.hh-review__quote{font-family:var(--serif);font-size:1.12rem;line-height:1.55;color:var(--ink);margin-bottom:1rem}
.hh-review__who{font-size:.9rem;color:var(--brass);font-weight:600;letter-spacing:.04em}
.hh-reviews__nav{display:flex;gap:.6rem;justify-content:center;margin-top:1.4rem}
.hh-reviews__nav button{
  width:44px;height:44px;border-radius:50%;border:1px solid var(--line-strong);background:transparent;color:var(--brass);
  cursor:pointer;display:flex;align-items:center;justify-content:center;transition:.2s
}
.hh-reviews__nav button:hover{border-color:var(--saffron);color:var(--saffron)}

/* =========================================================================
   LOCATION BLOCK + MAP
   ========================================================================= */
.hh-location{display:grid;grid-template-columns:1fr 1.1fr;gap:clamp(1.6rem,4vw,3rem);align-items:center}
@media(max-width:820px){.hh-location{grid-template-columns:1fr}}
.hh-location__list{list-style:none;margin:1.4rem 0;padding:0;display:grid;gap:.9rem}
.hh-location__list li{display:flex;align-items:center;gap:.8rem;font-size:1.02rem}
.hh-location__list a{font-weight:600}
.hh-location__actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1.4rem}
.hh-map{
  position:relative;aspect-ratio:16/11;border:1px solid var(--line);background:var(--cream-2);
  clip-path:var(--arch);overflow:hidden;
}
.hh-map iframe{width:100%;height:100%;border:0;display:block}
.hh-map__load{
  position:absolute;inset:0;width:100%;height:100%;border:0;cursor:pointer;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.6rem;
  background:repeating-linear-gradient(45deg,#EDE3D0,#EDE3D0 14px,#e7dac2 14px,#e7dac2 28px);
  color:var(--maroon);font-family:var(--sans);font-weight:600;letter-spacing:.04em;
}
.hh-map__load:hover{color:var(--saffron)}

/* =========================================================================
   CTA BAND
   ========================================================================= */
.hh-ctaband{background:var(--bg-deep);color:#F6ECDC;text-align:center;padding-block:var(--pad-section);position:relative;overflow:hidden}
.hh-ctaband::before{content:"";position:absolute;inset:0;background:radial-gradient(50% 80% at 50% 0%,rgba(217,138,43,.18),transparent 70%)}
.hh-ctaband__inner{position:relative}
.hh-ctaband__title{color:#FBF2E3}
.hh-ctaband__text{color:#E7D6BF;max-width:52ch;margin:0 auto 1.8rem}
.hh-ctaband__actions{display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap}

/* =========================================================================
   BREADCRUMB + SERVICE / PAGE HEADERS
   ========================================================================= */
.hh-pagehead{
  background:radial-gradient(120% 120% at 50% 0%,#3a1414,#2A0F0F);
  color:#F6ECDC;text-align:center;padding:clamp(7rem,12vw,9rem) 1.4rem clamp(3rem,6vw,4.5rem);
  border-bottom:1px solid var(--line);
}
.hh-pagehead h1{color:#FBF2E3;margin-bottom:.4rem}
.hh-crumbs{font-size:.85rem;color:#D8C4A8;letter-spacing:.03em}
.hh-crumbs a{color:var(--brass-hi)}
.hh-crumbs span{opacity:.5;margin-inline:.4rem}

/* =========================================================================
   ARTICLE / PROSE
   ========================================================================= */
.hh-prose{max-width:74ch;margin-inline:auto}
.hh-prose h2{margin-top:1.8em}
.hh-prose h3{margin-top:1.4em}
.hh-prose img{margin:1.6em auto;border:1px solid var(--line)}
.hh-prose blockquote{
  border-left:3px solid var(--brass);background:var(--cream-2);
  margin:1.6em 0;padding:1rem 1.4rem;font-family:var(--serif);font-style:italic;color:var(--maroon)
}
.hh-prose ul,.hh-prose ol{padding-left:1.3em}
.hh-prose li{margin-bottom:.5em}

/* steps */
.hh-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.4rem;margin:2rem 0;list-style:none;padding:0;counter-reset:step}
.hh-steps li{position:relative;border:1px solid var(--line);background:var(--cream);padding:1.6rem 1.3rem 1.3rem;counter-increment:step}
.hh-steps li::before{content:counter(step);position:absolute;top:-18px;left:1.3rem;width:38px;height:38px;border-radius:50%;background:var(--maroon);color:var(--cream);font-family:var(--serif);display:flex;align-items:center;justify-content:center}
.hh-steps h4{margin:.4rem 0 .3rem;font-size:1.1rem}
.hh-steps p{font-size:.92rem;margin:0;color:#5a4a40}

/* FAQ accordion */
.hh-faq{max-width:74ch;margin-inline:auto}
.hh-faq details{border:1px solid var(--line);background:var(--cream);margin-bottom:.8rem;padding:0 1.3rem}
.hh-faq summary{cursor:pointer;list-style:none;padding:1.1rem 0;font-family:var(--serif);font-size:1.15rem;color:var(--maroon);display:flex;justify-content:space-between;align-items:center;gap:1rem}
.hh-faq summary::-webkit-details-marker{display:none}
.hh-faq summary::after{content:"+";color:var(--brass);font-size:1.4rem;transition:.2s}
.hh-faq details[open] summary::after{transform:rotate(45deg)}
.hh-faq details p{padding:0 0 1.2rem;margin:0;color:var(--ink)}

/* =========================================================================
   BLOG
   ========================================================================= */
.hh-bloglayout{display:grid;grid-template-columns:1fr 300px;gap:clamp(1.6rem,4vw,3rem)}
@media(max-width:860px){.hh-bloglayout{grid-template-columns:1fr}}
.hh-postcards{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(1.2rem,2.5vw,1.8rem)}
@media(max-width:560px){.hh-postcards{grid-template-columns:1fr}}
.hh-postcard{background:var(--cream);border:1px solid var(--line);box-shadow:var(--shadow-soft);display:flex;flex-direction:column;overflow:hidden}
.hh-postcard__media{aspect-ratio:16/10;overflow:hidden;background:var(--cream-2)}
.hh-postcard__media img{width:100%;height:100%;object-fit:cover}
.hh-postcard__body{padding:1.4rem 1.3rem 1.5rem;display:flex;flex-direction:column;flex:1}
.hh-postcard__meta{font-size:.78rem;text-transform:uppercase;letter-spacing:.1em;color:var(--brass);margin-bottom:.5rem}
.hh-postcard__title{font-size:1.25rem;margin-bottom:.5rem}
.hh-postcard__title a{color:var(--ink)}
.hh-postcard__title a:hover{color:var(--saffron)}
.hh-postcard__ex{font-size:.94rem;color:#5a4a40;flex:1}
.hh-sidebar{align-self:start;position:sticky;top:96px;display:grid;gap:1.4rem}
.hh-widget{border:1px solid var(--line);background:var(--cream);padding:1.5rem}
.hh-widget--call{background:var(--bg-deep);color:#F6ECDC;text-align:center}
.hh-widget--call h3{color:#FBF2E3}
.hh-widget ul{list-style:none;margin:0;padding:0}
.hh-widget li{padding:.4rem 0;border-bottom:1px solid var(--line)}

/* categories filter */
.hh-cats{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center;margin-bottom:2.2rem}
.hh-cats a{border:1px solid var(--line);padding:.4rem 1rem;border-radius:2px;font-size:.9rem;color:var(--ink)}
.hh-cats a:hover,.hh-cats a.is-active{background:var(--maroon);color:var(--cream);border-color:var(--maroon)}

/* pagination */
.hh-pagination{display:flex;gap:.5rem;justify-content:center;margin-top:2.5rem;flex-wrap:wrap}
.hh-pagination .page-numbers{border:1px solid var(--line);padding:.5rem .9rem;color:var(--ink)}
.hh-pagination .current{background:var(--maroon);color:var(--cream);border-color:var(--maroon)}

/* =========================================================================
   CONTACT FORM
   ========================================================================= */
.hh-contactgrid{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(1.6rem,4vw,3rem)}
@media(max-width:820px){.hh-contactgrid{grid-template-columns:1fr}}
.hh-form{display:grid;gap:1rem}
.hh-form label{font-weight:600;font-size:.9rem;display:block;margin-bottom:.3rem}
.hh-form input,.hh-form textarea{
  width:100%;padding:.8rem .9rem;border:1px solid var(--line-strong);background:var(--cream);
  font-family:var(--sans);font-size:1rem;color:var(--ink);border-radius:2px;
}
.hh-form input:focus,.hh-form textarea:focus{outline:2px solid var(--saffron);outline-offset:1px;border-color:var(--saffron)}
.hh-form textarea{min-height:140px;resize:vertical}
.hh-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.hh-formnote{padding:.9rem 1.1rem;border:1px solid var(--line-strong);background:var(--cream-2);border-radius:2px;margin-bottom:1.2rem}
.hh-formnote--ok{border-color:#3f7d3f;background:#eaf3e6;color:#2c5a2c}
.hh-formnote--err{border-color:#a14242;background:#f4e6e6;color:#7d2c2c}

/* =========================================================================
   FOOTER
   ========================================================================= */
.hh-footer{background:#190707;color:#D8C4A8;padding-block:clamp(3rem,6vw,4.5rem) 1.5rem;border-top:1px solid var(--line)}
.hh-footer a{color:#E7D2B3}
.hh-footer a:hover{color:var(--saffron)}
.hh-footer__grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:clamp(1.6rem,4vw,3rem)}
@media(max-width:760px){.hh-footer__grid{grid-template-columns:1fr;text-align:center}}
.hh-footer h4{color:#F6ECDC;font-size:1.1rem;margin-bottom:1rem}
.hh-footer ul{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.hh-footer__brand{display:flex;align-items:center;gap:.7rem;margin-bottom:1rem}
.hh-footer__brand .hh-brand__mark{color:var(--brass)}
.hh-footer__brand strong{font-family:var(--serif);font-size:1.25rem;color:#F6ECDC}
.hh-footer__disclaimer{font-size:.82rem;color:#9a836a;border-top:1px solid rgba(166,124,46,.25);margin-top:2.5rem;padding-top:1.3rem;text-align:center;line-height:1.6}

/* =========================================================================
   MOBILE STICKY CALL BUTTON
   ========================================================================= */
.hh-callbar{
  position:fixed;left:0;right:0;bottom:0;z-index:70;display:none;
  background:var(--saffron);color:#2A0F0F;text-align:center;font-weight:700;
  padding:.95rem;letter-spacing:.02em;box-shadow:0 -8px 24px -16px rgba(0,0,0,.6);
}
.hh-callbar:hover{color:#2A0F0F;background:#c87c25}
@media(max-width:900px){.hh-callbar{display:flex;align-items:center;justify-content:center;gap:.5rem}body{padding-bottom:54px}}

/* utility */
.hh-mt0{margin-top:0}
.hh-lead{font-size:clamp(1.05rem,1.8vw,1.22rem);color:#4a3c33}
.hh-section--deep .hh-lead{color:#E7D6BF}
