:root {
  --hh-green: #3c4a2e;
  --hh-green-dark: #2a3420;
  --hh-olive: #4b5320;
  --hh-black: #1a1a1a;
  --hh-white: #ffffff;
  --hh-gold: #c9a227;
  --hh-gray: #6b6f66;
  --hh-bg: #f6f5f1;
  --font-heading: 'Montserrat', 'Segoe UI', Arial, Helvetica, sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--hh-black);
  background: var(--hh-bg);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--hh-green-dark);
  line-height: 1.2;
}

a { color: var(--hh-green); }
a:hover { color: var(--hh-gold); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--hh-black);
  color: var(--hh-white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--hh-gold);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-header .brand {
  color: var(--hh-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.site-header .brand span { color: var(--hh-gold); }
.brand-logo { height: 52px; width: auto; display: block; }
.site-nav { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  color: var(--hh-white);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--hh-gold); color: var(--hh-white); }
.nav-toggle { display: none; background: none; border: 0; color: var(--hh-white); font-size: 1.5rem; cursor: pointer; order: 3; }
.site-header .container nav { order: 2; }
.site-header .container .brand { order: 1; }

/* ---------- Submenu (dropdown) ---------- */
.site-nav li.has-submenu { position: relative; }
.submenu-caret { font-size: 0.65rem; vertical-align: middle; opacity: 0.8; }
.site-nav .submenu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--hh-black);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--hh-gold);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 60;
}
.site-nav li.has-submenu:hover .submenu,
.site-nav li.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav .submenu li { width: 100%; }
.site-nav .submenu a {
  display: block;
  padding: 10px 18px;
  text-transform: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-bottom: none;
  white-space: nowrap;
}
.site-nav .submenu a:hover { background: rgba(255,255,255,0.06); color: var(--hh-gold); }

@media (max-width: 820px) {
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--hh-black); flex-direction: column; padding: 10px 20px 20px; display: none; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .site-nav li.has-submenu { width: 100%; }
  .site-nav .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    border-left: 2px solid var(--hh-gold);
    background: transparent;
    box-shadow: none;
    margin: 4px 0 4px 8px;
    padding: 0;
  }
  .site-nav li.has-submenu.open .submenu { display: block; }
  .site-nav .submenu a { padding: 8px 12px; }
}

/* ---------- Hero (video) ---------- */
.hero-video {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hh-white);
  text-align: center;
  background: var(--hh-black);
}
.hero-video video, .hero-video .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video .hero-fallback {
  background: linear-gradient(160deg, var(--hh-green-dark), var(--hh-black));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 20px; }
.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hh-gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero-content h1 {
  color: var(--hh-white);
  font-size: 3rem;
  margin: 0 0 18px;
}
.hero-content p { font-size: 1.15rem; margin-bottom: 32px; color: #e9e9e4; }

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--hh-gold); color: var(--hh-black); }
.btn-gold:hover { background: #dfb52f; color: var(--hh-black); }
.btn-outline { background: transparent; color: var(--hh-white); border-color: var(--hh-white); }
.btn-outline:hover { background: var(--hh-white); color: var(--hh-black); }
.btn-green { background: var(--hh-green); color: var(--hh-white); }
.btn-green:hover { background: var(--hh-green-dark); color: var(--hh-white); }
.btn-outline-dark { background: transparent; color: var(--hh-green-dark); border-color: var(--hh-green-dark); }
.btn-outline-dark:hover { background: var(--hh-green-dark); color: var(--hh-white); }

/* ---------- Split hero (main homepage) ---------- */
.split-hero { background: var(--hh-bg); padding: 90px 0; }
.split-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.split-hero-copy .eyebrow { text-transform: uppercase; letter-spacing: 3px; color: var(--hh-gold); font-weight: 700; font-size: 0.85rem; margin-bottom: 14px; }
.split-hero-copy h1 { font-size: 2.9rem; margin: 0 0 20px; }
.split-hero-copy p { font-size: 1.1rem; color: var(--hh-gray); margin-bottom: 32px; max-width: 480px; }
.split-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.split-hero-media { border-radius: 8px; overflow: hidden; box-shadow: 0 12px 34px rgba(0,0,0,0.15); }
.split-hero-media img { width: 100%; height: 420px; object-fit: cover; }
.split-hero-media-fallback { width: 100%; height: 420px; background: linear-gradient(160deg, var(--hh-green), var(--hh-green-dark)); }
.split-hero-logo-frame {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hh-white);
  padding: 16px;
}
.split-hero-logo-frame img.split-hero-logo-img { width: 100%; height: 100%; object-fit: contain; }
.split-hero-video-frame { padding: 8px; }
.split-hero-video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .split-hero { padding: 56px 0; }
  .split-hero-grid { grid-template-columns: 1fr; }
  .split-hero-copy { text-align: center; }
  .split-hero-copy p { margin-left: auto; margin-right: auto; }
  .split-hero-actions { justify-content: center; }
  .split-hero-copy h1 { font-size: 2.2rem; }
  .split-hero-media { order: -1; }
  .split-hero-media img, .split-hero-media-fallback, .split-hero-logo-frame { height: 260px; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--hh-white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ---------- Splash screen ---------- */
html:has(body.splash-body), body.splash-body { height: 100%; margin: 0; overflow: hidden; }
.splash-screen {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hh-black);
}
.splash-video, .splash-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splash-fallback {
  background: radial-gradient(circle at 50% 30%, var(--hh-green-dark), var(--hh-black) 75%);
}
.splash-video-embed {
  pointer-events: none;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.splash-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.8) 100%);
}
.video-mute-toggle {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.35);
  color: var(--hh-white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.video-mute-toggle:hover {
  background: rgba(0,0,0,0.55);
  border-color: var(--hh-gold);
  color: var(--hh-gold);
  transform: translateY(-2px);
}
.video-mute-toggle svg { width: 22px; height: 22px; }
.video-mute-toggle .icon-unmuted { display: none; }
.video-mute-toggle[data-muted="false"] .icon-muted { display: none; }
.video-mute-toggle[data-muted="false"] .icon-unmuted { display: block; }
@media (max-width: 600px) {
  .video-mute-toggle { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}
/* Smaller toggle for the split-hero video frame (frame is much shorter than the splash screen) */
.split-hero-video-frame .video-mute-toggle { right: 16px; bottom: 16px; width: 40px; height: 40px; }
.split-hero-video-frame .video-mute-toggle svg { width: 18px; height: 18px; }
.splash-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 64px;
  text-align: center;
}
.splash-logo {
  max-height: 130px;
  max-width: min(80vw, 420px);
  width: auto;
}
.splash-logo-text {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--hh-white);
  letter-spacing: 1px;
}
.splash-logo-text span { color: var(--hh-gold); }
.splash-cta.btn-lg { padding: 20px 56px; font-size: 1.05rem; letter-spacing: 1.5px; }
.splash-cta {
  position: relative;
  overflow: hidden;
  color: var(--hh-white);
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.6),
    inset 0 -12px 18px rgba(0,0,0,0.12),
    0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.splash-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}
.splash-cta::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 35%;
  height: 200%;
  background: linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transition: left 0.7s ease;
  pointer-events: none;
}
.splash-cta:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.14);
  color: var(--hh-gold);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.7),
    inset 0 -12px 18px rgba(0,0,0,0.14),
    0 12px 30px rgba(0,0,0,0.4);
}
.splash-cta:hover::after { left: 130%; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--hh-white); }
.section-dark { background: var(--hh-green-dark); color: #eee; }
.section-dark h2 { color: var(--hh-white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header .eyebrow { color: var(--hh-gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 0.8rem; }
.section-header h2 { font-size: 2.1rem; margin: 8px 0 12px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 820px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--hh-white);
  border: 1px solid #e3e1d8;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.card img { height: 190px; object-fit: cover; width: 100%; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-top: 0; font-size: 1.2rem; }
.card-body h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta { font-size: 0.8rem; color: var(--hh-gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-tags { margin-top: auto; padding-top: 12px; }
.tag-pill {
  display: inline-block;
  background: var(--hh-bg);
  border: 1px solid #ddd;
  color: var(--hh-gray);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  margin: 2px 4px 2px 0;
  text-decoration: none;
}
.tag-pill:hover { border-color: var(--hh-gold); color: var(--hh-black); }
.tag-pill-more { background: transparent; border-style: dashed; font-weight: 600; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats .stat b { display: block; font-size: 2.4rem; color: var(--hh-gold); font-family: var(--font-heading); }
.stats .stat span { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; color: #cfd2c8; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.icon-features-header { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.icon-features-header h2 { color: var(--hh-gold); text-transform: uppercase; letter-spacing: 2px; font-size: 1.6rem; margin: 0 0 16px; }
.icon-features-header p { color: var(--hh-gray); }
.icon-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
@media (max-width: 820px) { .icon-features-grid { grid-template-columns: 1fr; } }
.icon-feature-circle {
  width: 74px; height: 74px; margin: 0 auto 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--hh-gold);
}
.icon-feature-circle svg { width: 44px; height: 44px; }
.icon-feature h3 { color: var(--hh-gold); text-transform: uppercase; letter-spacing: 1px; font-size: 1.05rem; margin: 0 0 8px; }
.icon-feature p { color: var(--hh-gray); margin: 0; font-size: 0.92rem; }

.prose { max-width: 800px; margin: 0 auto; }
.prose img { border-radius: 6px; margin: 20px 0; }
.prose h2 { margin-top: 36px; }

.block-image-text { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.block-image-text.reverse { direction: rtl; }
.block-image-text.reverse > * { direction: ltr; }
.block-image-text-media img { width: 100%; border-radius: 8px; display: block; }
@media (max-width: 820px) { .block-image-text { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.alert { padding: 14px 18px; border-radius: 4px; margin-bottom: 20px; font-size: 0.92rem; }
.alert-success { background: #e7f3e3; color: #2a5a1e; border: 1px solid #b9dcae; }
.alert-error { background: #fbe6e4; color: #8a2318; border: 1px solid #f1b3ab; }

/* ---------- Footer ---------- */
/* ---------- Contact page ---------- */
.contact-hero {
  background: linear-gradient(160deg, var(--hh-green-dark), var(--hh-black));
  color: var(--hh-white);
  padding: 76px 0;
  text-align: center;
}
.contact-hero .eyebrow { color: var(--hh-gold); text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: 0.85rem; margin-bottom: 14px; }
.contact-hero h1 { color: var(--hh-white); font-size: 2.6rem; margin: 0 0 16px; }
.contact-hero p { color: #d8dbd2; max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.contact-wrap { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-card {
  background: var(--hh-white);
  border: 1px solid #e3e1d8;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}
.contact-form-card h2 { margin-top: 0; font-size: 1.5rem; }
.contact-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .contact-form-card .form-row { grid-template-columns: 1fr; } }
.contact-form-card button { width: 100%; }

.contact-info-card {
  background: var(--hh-green-dark);
  color: #e9ebe4;
  border-radius: 10px;
  padding: 36px;
}
.contact-info-card h3 { color: var(--hh-white); margin-top: 0; font-size: 1.2rem; }
.contact-info-list { list-style: none; margin: 0 0 28px; padding: 0; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--hh-gold);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item h4 { margin: 0 0 4px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--hh-gold); }
.contact-info-item p, .contact-info-item a { margin: 0; color: #e9ebe4; text-decoration: none; font-size: 0.96rem; }
.contact-info-item a:hover { color: var(--hh-gold); }
.contact-info-empty { color: #b7bcae; font-size: 0.92rem; margin: 0 0 28px; }
.contact-social-links { display: flex; gap: 10px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; }
.contact-social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--hh-white); transition: background 0.15s ease, border-color 0.15s ease;
}
.contact-social-links a:hover { background: var(--hh-gold); border-color: var(--hh-gold); color: var(--hh-black); }
.contact-social-links svg { width: 16px; height: 16px; }

.site-footer { background: var(--hh-black); color: #cfd2c8; padding: 50px 0 24px; margin-top: 40px; }
.site-footer h4 { color: var(--hh-white); font-size: 1rem; margin-top: 0; }
.site-footer a { color: #cfd2c8; text-decoration: none; }
.site-footer a:hover { color: var(--hh-gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 32px; margin-bottom: 32px; }
.footer-grid > div { min-width: 0; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: #e9ebe4;
}
.social-links a:hover { background: var(--hh-gold); border-color: var(--hh-gold); color: var(--hh-black); }
.social-links svg { width: 16px; height: 16px; }

.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 0; padding: 10px; border-radius: 4px; border: 1px solid #444; background: #222; color: #fff; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.pagination a, .pagination span {
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: var(--hh-black);
  font-size: 0.9rem;
}
.pagination .current { background: var(--hh-green); color: var(--hh-white); border-color: var(--hh-green); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.8rem; color: var(--hh-gray); margin-bottom: 20px; }
.breadcrumbs a { color: var(--hh-gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--hh-green); }

/* ---------- Admin ---------- */
.admin-body { background: #f2f2ef; font-family: var(--font-body); }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar { width: 230px; background: var(--hh-black); color: #fff; padding: 20px 0; flex-shrink: 0; }
.admin-sidebar .brand { display: block; padding: 0 20px 20px; color: var(--hh-gold); font-weight: bold; font-family: var(--font-heading); font-size: 1.2rem; text-decoration: none; }
.admin-sidebar a { display: block; padding: 10px 20px; color: #ddd; text-decoration: none; font-size: 0.9rem; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: var(--hh-green-dark); color: #fff; }
.admin-main { flex: 1; padding: 28px 34px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-card { background: #fff; border: 1px solid #e3e1d8; border-radius: 6px; padding: 24px; margin-bottom: 20px; }
table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table th, table.admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #eee; font-size: 0.9rem; }
table.admin-table th { color: var(--hh-gray); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.5px; }
.status-badge { padding: 2px 10px; border-radius: 10px; font-size: 0.72rem; text-transform: uppercase; font-weight: 700; }
.status-published { background: #e2f2df; color: #2a6b1c; }
.status-draft { background: #f1efe4; color: #8a742a; }
.admin-login { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--hh-black); }
.admin-login-box { background: #fff; padding: 40px; border-radius: 8px; width: 360px; border-top: 4px solid var(--hh-gold); }
.btn-sm { padding: 6px 14px; font-size: 0.78rem; }

/* ---------- Block editor ---------- */
.block-add-row { display: flex; gap: 10px; margin-bottom: 20px; }
.block-add-row select { flex: 1; padding: 10px 12px; border: 1px solid #ccc; border-radius: 4px; }
.block-list { display: flex; flex-direction: column; gap: 14px; }
.block-card { background: #fff; border: 1px solid #e3e1d8; border-radius: 6px; }
.block-card-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: #f7f6f1; border-bottom: 1px solid #e3e1d8; border-radius: 6px 6px 0 0; cursor: pointer; }
.block-card-title { font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.block-card-title .block-type-tag { background: var(--hh-green); color: #fff; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.5px; padding: 2px 8px; border-radius: 10px; }
.block-card-actions { display: flex; gap: 6px; }
.block-card-actions button { background: #eee; border: none; border-radius: 4px; padding: 5px 10px; font-size: 0.78rem; cursor: pointer; }
.block-card-actions button:hover { background: #ddd; }
.block-card-actions button.danger { background: #fbe6e4; color: #8a2318; }
.block-card-actions button.danger:hover { background: #f3cdc8; }
.block-card-actions button:disabled { opacity: 0.35; cursor: not-allowed; }
.block-card-body { padding: 18px 16px; display: none; }
.block-card-body.open { display: block; }
.block-empty { color: #888; text-align: center; padding: 30px; border: 1px dashed #ccc; border-radius: 6px; }
.field-row { margin-bottom: 14px; }
.field-row label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 0.85rem; }
.field-row input[type="text"], .field-row input[type="url"], .field-row input[type="number"], .field-row select, .field-row textarea {
  width: 100%; padding: 9px 11px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; font-size: 0.9rem;
}
.field-row textarea { min-height: 90px; resize: vertical; }
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.image-field-row { display: flex; gap: 8px; align-items: flex-start; }
.image-field-row input { flex: 1; }
.image-field-preview { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; border: 1px solid #ddd; flex-shrink: 0; display: none; }
.image-field-preview.show { display: block; }
.repeatable-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 10px; }
.repeatable-item { border: 1px solid #e3e1d8; border-radius: 6px; padding: 12px; background: #fafaf7; position: relative; }
.repeatable-item .remove-item { position: absolute; top: 8px; right: 8px; background: #fbe6e4; color: #8a2318; border: none; border-radius: 4px; padding: 3px 8px; font-size: 0.72rem; cursor: pointer; }

.rt-field { border: 1px solid #ccc; border-radius: 4px; overflow: hidden; }
.rt-toolbar { display: flex; gap: 4px; padding: 6px; background: #f2f2ef; border-bottom: 1px solid #ccc; flex-wrap: wrap; }
.rt-toolbar button { background: #fff; border: 1px solid #ddd; border-radius: 3px; padding: 4px 9px; font-size: 0.82rem; cursor: pointer; }
.rt-toolbar button:hover { background: #eee; }
.rt-editable { min-height: 110px; padding: 12px; font-size: 0.92rem; line-height: 1.5; outline: none; }
.rt-editable h2 { margin: 10px 0; font-size: 1.15rem; }
.rt-editable ul, .rt-editable ol { padding-left: 22px; }

.media-modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; align-items: center; justify-content: center; }
.media-modal-backdrop.open { display: flex; }
.media-modal { background: #fff; border-radius: 8px; width: min(720px, 92vw); max-height: 82vh; display: flex; flex-direction: column; }
.media-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid #eee; }
.media-modal-body { padding: 16px 20px; overflow-y: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.media-modal-item { cursor: pointer; border: 2px solid transparent; border-radius: 6px; overflow: hidden; }
.media-modal-item:hover { border-color: var(--hh-gold); }
.media-modal-item img { width: 100%; height: 90px; object-fit: cover; display: block; }
.media-modal-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: #888; }
.actions-row { display: flex; gap: 8px; align-items: center; }
.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 24px; }
.dashboard-stats .admin-card { text-align: center; margin-bottom: 0; }
.dashboard-stats b { font-size: 2rem; display: block; color: var(--hh-green); }

.preview-banner { background: var(--hh-gold); color: var(--hh-black); position: sticky; top: 0; z-index: 900; }
.preview-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 20px; font-size: 0.9rem; font-weight: 600; }
.preview-banner-inner button { background: var(--hh-black); color: var(--hh-white); border: none; border-radius: 4px; padding: 6px 14px; font-size: 0.85rem; cursor: pointer; }
.preview-banner-inner button:hover { opacity: 0.85; }
