:root {
  --hhs-green: #24430d;
  --hhs-deep-green: #102107;
  --hhs-orange: #f3a20b;
  --hhs-cream: #fff7e7;
  --hhs-white: #ffffff;
  --hhs-muted: rgba(255, 255, 255, 0.78);
  --hhs-line: rgba(255, 255, 255, 0.22);
  --hhs-mouse-x: 50%;
  --hhs-mouse-y: 40%;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--hhs-deep-green); scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--hhs-white);
  background: var(--hhs-deep-green);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }

.hhs-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  isolation: isolate;
}

.hhs-background,
.hhs-background img,
.hhs-overlay,
.hhs-texture,
.hhs-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hhs-background { z-index: -5; }
.hhs-background img {
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
  transform: scale(1.035);
  animation: hhsSlowZoom 18s ease-out both;
}

.hhs-overlay {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(8, 18, 4, 0.95) 0%, rgba(10, 22, 5, 0.83) 36%, rgba(13, 26, 7, 0.46) 68%, rgba(10, 18, 5, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 11, 2, 0.5) 0%, transparent 30%, rgba(5, 12, 2, 0.72) 100%);
}

.hhs-texture {
  z-index: -3;
  opacity: 0.13;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hhs-glow {
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle 540px at var(--hhs-mouse-x) var(--hhs-mouse-y), rgba(243, 162, 11, 0.14), transparent 68%);
  transition: background 160ms linear;
}

.hhs-header,
.hhs-footer,
.hhs-content {
  width: min(1420px, calc(100% - 96px));
  margin-inline: auto;
}

.hhs-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: max(28px, env(safe-area-inset-top));
  animation: hhsFadeDown 800ms 120ms both;
}

/* The logo is deliberately contained and absolutely fitted inside its card.
   This prevents it from drifting into the hero heading on any viewport. */
.hhs-logo {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 176px;
  height: 118px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 4px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.hhs-logo > img {
  position: absolute !important;
  inset: 9px 13px !important;
  display: block !important;
  width: calc(100% - 26px) !important;
  height: calc(100% - 18px) !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.hhs-contact {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  padding: 10px 0 10px 28px;
  border-left: 1px solid var(--hhs-line);
}
.hhs-contact span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hhs-contact strong {
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.25s ease;
}
.hhs-contact:hover strong { color: #ffc44f; }

.hhs-content {
  position: relative;
  z-index: 5;
  align-self: center;
  padding: 46px 0 34px;
}

.hhs-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  animation: hhsFadeUp 800ms 220ms both;
}
.hhs-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hhs-orange);
  box-shadow: 0 0 0 0 rgba(243, 162, 11, 0.55);
  animation: hhsPulse 2.4s infinite;
}

.hhs-brand-name {
  margin: 34px 0 5px;
  color: var(--hhs-orange);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: hhsFadeUp 800ms 300ms both;
}

.hhs-content h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 10.8vw, 10.8rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.075em;
  text-wrap: balance;
}
.hhs-content h1 span,
.hhs-content h1 em { display: block; }
.hhs-content h1 span { animation: hhsTitleIn 950ms 350ms both; }
.hhs-content h1 em {
  margin-left: 0.42em;
  color: var(--hhs-cream);
  font-weight: 400;
  animation: hhsTitleIn 950ms 450ms both;
}

.hhs-intro {
  max-width: 650px;
  margin: 40px 0 0;
  color: var(--hhs-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.7;
  animation: hhsFadeUp 850ms 560ms both;
}

.hhs-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  animation: hhsFadeUp 850ms 660ms both;
}

.hhs-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  padding: 0 23px 0 25px;
  color: #1a260d;
  background: var(--hhs-orange);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid var(--hhs-orange);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.hhs-primary-button span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(20, 31, 8, 0.24);
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.hhs-primary-button:hover {
  background: #ffb525;
  transform: translateY(-3px);
  box-shadow: 0 23px 44px rgba(0, 0, 0, 0.28);
}
.hhs-primary-button:hover span { transform: translate(2px, -2px); }

.hhs-domain {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  padding-bottom: 7px;
}
.hhs-domain::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.hhs-footer {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: max(26px, env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: hhsFadeUp 800ms 780ms both;
}
.hhs-footer p { margin: 0; }
.hhs-values { display: flex; align-items: center; gap: 13px; }
.hhs-values span { color: rgba(255, 255, 255, 0.8); }
.hhs-values b { color: var(--hhs-orange); font-size: 0.8rem; }

@keyframes hhsFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes hhsFadeDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
@keyframes hhsTitleIn { from { opacity: 0; transform: translateY(42px); filter: blur(8px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes hhsSlowZoom { from { transform: scale(1.07); } to { transform: scale(1.015); } }
@keyframes hhsPulse { 0% { box-shadow: 0 0 0 0 rgba(243, 162, 11, 0.55); } 70% { box-shadow: 0 0 0 10px rgba(243, 162, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(243, 162, 11, 0); } }

@media (max-width: 900px) {
  .hhs-header, .hhs-footer, .hhs-content { width: min(calc(100% - 48px), 760px); }
  .hhs-contact span { display: none; }
  .hhs-contact { padding-left: 18px; }
  .hhs-content h1 { font-size: clamp(4.8rem, 16vw, 8.5rem); }
  .hhs-overlay {
    background:
      linear-gradient(90deg, rgba(8, 18, 4, 0.91), rgba(10, 22, 5, 0.67) 62%, rgba(10, 18, 5, 0.48)),
      linear-gradient(180deg, rgba(5, 11, 2, 0.48), transparent 30%, rgba(5, 12, 2, 0.78));
  }
}

@media (max-width: 700px) {
  .hhs-background img { object-position: 50% 54%; }
  .hhs-overlay {
    background:
      linear-gradient(180deg, rgba(8, 18, 4, 0.78) 0%, rgba(8, 18, 4, 0.48) 30%, rgba(7, 16, 3, 0.89) 70%, rgba(6, 14, 3, 0.97) 100%),
      linear-gradient(90deg, rgba(6, 14, 3, 0.48), rgba(6, 14, 3, 0.18));
  }
  .hhs-header, .hhs-footer, .hhs-content { width: calc(100% - 38px); }
  .hhs-header { padding-top: max(18px, env(safe-area-inset-top)); }
  .hhs-logo { width: 134px; height: 90px; }
  .hhs-logo > img {
    inset: 7px 10px !important;
    width: calc(100% - 20px) !important;
    height: calc(100% - 14px) !important;
  }
  .hhs-contact {
    align-items: flex-end;
    padding-left: 14px;
    max-width: 50%;
  }
  .hhs-contact strong { font-size: 0.69rem; overflow-wrap: anywhere; text-align: right; }
  .hhs-content { align-self: end; padding: 30px 0 34px; }
  .hhs-status { font-size: 0.58rem; letter-spacing: 0.075em; padding: 8px 11px; }
  .hhs-brand-name { margin-top: 27px; font-size: 0.64rem; letter-spacing: 0.22em; }
  .hhs-content h1 { font-size: clamp(4.3rem, 23vw, 6.9rem); line-height: 0.77; letter-spacing: -0.065em; }
  .hhs-content h1 em { margin-left: 0.17em; }
  .hhs-intro { margin-top: 28px; max-width: 34rem; font-size: 0.98rem; line-height: 1.55; }
  .hhs-actions { align-items: stretch; flex-direction: column; gap: 17px; margin-top: 26px; }
  .hhs-primary-button { width: 100%; min-height: 54px; justify-content: space-between; }
  .hhs-domain { align-self: flex-start; }
  .hhs-footer { align-items: flex-start; flex-direction: column; gap: 10px; padding-bottom: max(18px, env(safe-area-inset-bottom)); font-size: 0.59rem; }
  .hhs-values { gap: 9px; }
}

@media (max-height: 700px) and (min-width: 701px) {
  .hhs-logo { width: 140px; height: 92px; }
  .hhs-logo > img {
    inset: 7px 10px !important;
    width: calc(100% - 20px) !important;
    height: calc(100% - 14px) !important;
  }
  .hhs-content { padding-top: 25px; padding-bottom: 25px; }
  .hhs-brand-name { margin-top: 22px; }
  .hhs-content h1 { font-size: clamp(4.7rem, 10vw, 8.6rem); }
  .hhs-intro { margin-top: 26px; }
  .hhs-actions { margin-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .hhs-background img { transform: none; }
}
