.hero {
  min-height: 100svh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0; background: var(--b); z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 75% 25%, rgba(200,144,10,.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 90% at 15% 75%, rgba(27,94,56,.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(80,90,150,.06) 0%, transparent 50%);
  animation: bgAnim 25s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 45%, black 20%, transparent 100%);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1; opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-line-decor {
  position: absolute; top: 0; right: 28%; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(200,144,10,.12) 30%, rgba(200,144,10,.18) 60%, transparent);
  z-index: 1; pointer-events: none;
}
.hero-main {
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8rem calc(28% + 2.5rem) 3.5rem 3rem;
  position: relative; z-index: 2;
}

/* Gold rule above headline */
.h-rule {
  width: 28px; height: 1.5px;
  background: var(--g);
  margin-bottom: 2rem;
  animation: up .8s var(--r) .35s both;
}

/* Headline */
.h1 {
  font-family: var(--serif);
  font-size: clamp(4.8rem, 10vw, 11.5rem);
  font-weight: 300; line-height: .9; letter-spacing: -.03em;
  overflow: hidden;
}
.h1-line  { display: block; overflow: hidden; }
.h1-word  { display: inline-block; }
.h1-w1 { color: var(--t); animation: wordIn .9s var(--r) .5s both; }
.h1-w2 { color: transparent; -webkit-text-stroke: 1.5px rgba(246,245,242,.16); font-style: italic; animation: wordIn .9s var(--r) .65s both; }
.h1-w3 { color: var(--t); animation: wordIn .9s var(--r) .78s both; }
.h1-w4 { color: var(--g); font-style: italic; animation: wordIn .9s var(--r) .9s both; }

/* Description + buttons — stacked */
.h-desc {
  font-size: .9rem; color: rgba(250,250,248,.8);
  font-weight: 300; line-height: 1.85; max-width: 460px;
  margin-top: 2rem;
  animation: up .8s var(--r) 1.05s both;
}
.h-btns {
  display: flex; flex-direction: row; align-items: center; gap: .75rem;
  margin-top: 1.5rem;
  animation: up .8s var(--r) 1.15s both;
}
.h-btn-p {
  padding: .82rem 1.9rem;
  background: linear-gradient(135deg, var(--g), rgba(229,168,18,.8));
  color: #000; font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  border: none; border-radius: 9px; cursor: pointer;
  box-shadow: 0 4px 22px rgba(200,144,10,.3);
  transition: box-shadow .25s, transform .2s;
}
.h-btn-p:hover { box-shadow: 0 6px 32px rgba(200,144,10,.55); transform: translateY(-2px); }
.h-btn-txt {
  font-size: .75rem; font-weight: 400;
  color: rgba(200,144,10,.75);
  letter-spacing: .06em;
  display: flex; align-items: center; gap: .4rem;
  transition: color .2s, gap .2s;
  text-decoration: none;
}
.h-btn-txt:hover { color: var(--g2); gap: .7rem; }

/* Stats bar */
.h-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--br);
  position: relative; z-index: 2;
  animation: up .7s var(--r) 1.2s both;
}
.h-stat {
  padding: 1.6rem 2.4rem; border-right: 1px solid var(--br);
  position: relative; overflow: hidden; transition: background .3s; cursor: default;
}
.h-stat:last-child { border-right: none; }
.h-stat:hover { background: var(--s1); }
.h-stat::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--g), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--r);
}
.h-stat:hover::after { transform: scaleX(1); }
.h-sn {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--g); line-height: 1; letter-spacing: -.025em;
}
.h-sl {
  font-size: .56rem; font-weight: 500; letter-spacing: .17em;
  text-transform: uppercase; color: rgba(250,250,248,.55);
  margin-top: .3rem; line-height: 1.6;
}

/* ── Services preview panel (right column) ── */
.h-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 28%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2.5rem 8rem 2rem;
}
.h-panel-label {
  font-size: .54rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(200,144,10,.6);
  margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: .55rem;
}
.h-panel-label::before {
  content: ""; width: 14px; height: 1.5px;
  background: var(--g); border-radius: 2px;
}
.h-panel-list { list-style: none; display: flex; flex-direction: column; }
.h-panel-item {
  display: flex; align-items: baseline; gap: .9rem;
  padding: .88rem 0;
  border-bottom: 1px solid rgba(200,144,10,.12);
  transition: color .2s; cursor: default;
}
.h-panel-item:last-child { border-bottom: none; }
.h-pi-num {
  font-family: var(--serif); font-size: .8rem; font-weight: 300;
  color: rgba(200,144,10,.5); line-height: 1;
  flex-shrink: 0; letter-spacing: .02em;
  transition: color .2s;
}
.h-pi-ttl {
  font-size: .67rem; font-weight: 400;
  color: rgba(250,250,248,.58); line-height: 1.4;
  transition: color .2s;
}
.h-panel-item:hover .h-pi-num { color: var(--g); }
.h-panel-item:hover .h-pi-ttl { color: var(--t); }

/* Explore button */
.hero-svc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: .75rem 1.1rem;
  background: linear-gradient(135deg, var(--g), rgba(229,168,18,.8));
  color: #000;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow .25s, transform .2s;
  box-shadow: 0 4px 18px rgba(200,144,10,.25);
}
.hero-svc-btn:hover {
  box-shadow: 0 6px 28px rgba(200,144,10,.45);
  transform: translateY(-1px);
}
.hero-svc-btn-arrow {
  font-size: .9rem;
  transition: transform .2s;
}
.hero-svc-btn:hover .hero-svc-btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .h-panel { display: none; }
  .hero-main { padding-right: 3rem; }
}
