/* #region ========== Hero ========== */
.hero-seo {
  position: relative;
  z-index: 2;
  max-width: 640px;
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  line-height: 1.35;
  margin: 0 0 18px;
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 0.7s forwards;
}

.hero { 
  position: relative;
  min-height: var(--hero-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; 
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201,163,73,0.09), transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(201,163,73,0.05), transparent 45%),
    var(--color-bg);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  z-index: 2;
}
.hero-mark {
  position: absolute;
  top: 32%;
  right: -13%;
  width: 60%;
  max-width: 900px;
  opacity: 0.06;
  transform: translateY(-50%) rotate(-5deg);
  pointer-events: none;
  z-index: 1;
}
.hero-logo-svg {
  width: 100%;
  filter: brightness(0) invert(1);
}

.hero-headline {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 0 35px;
  display: block;

  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  transform: translateY(28px);
}
.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3 {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp .95s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
}
.hero-headline .line-1 { animation-delay: 0.15s;}
.hero-headline .line-2 { animation-delay: 0.35s;}
.hero-headline .line-3 { animation-delay: 0.55s;}
.hero-headline em {
  font-style: normal;
  color: var(--color-accent);
  position: relative;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  position: relative;
  z-index: 2;
  max-width: 640px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 36px;
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 0.8s forwards;
}
.hero-ctas {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 1.0s forwards;
}
.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(0.2, 0.65, 0.2, 1) 1.2s forwards;
}
.hero-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* #endregion */


/* #region ========== Footer ========== */
.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--color-border);
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 240px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a:hover { 
  color: var(--color-accent-hover); 
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: all .25s ease;
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-family: var(--font-accent);
  font-size: 0.80rem;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

/* #endregion */
