/* ============ GRAFFT HERO WIDGET ============ */
.grafft-hero{
  --hero-bg: #1C1B19;
  --hero-overlay-start: rgba(28,27,25,.15);
  --hero-overlay-end: rgba(28,27,25,.65);
  --hero-text: #FFFDF9;
  --hero-sub-text: rgba(255,253,249,.85);
  --hero-eyebrow-text: rgba(255,253,249,.7);
  --hero-line-color: #8B7355;
  --hero-line-color-soft: #B8A88E;
  --hero-cta-bg: #FFFDF9;
  --hero-cta-color: #1C1B19;
  --hero-cta-hover-bg: #D2C6AC;
  --hero-mono: 'IBM Plex Mono', monospace;
  --hero-min-height: 640px;

  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, var(--hero-overlay-start), var(--hero-overlay-end)), var(--hero-bg);
  overflow: hidden;
  color: var(--hero-text);
  box-sizing: border-box;
}
.grafft-hero *{ box-sizing: border-box; }

.grafft-hero .hero-render{
  position: absolute;
  inset: 0;
  opacity: .9;
  width: 100%;
  height: 100%;
}
.grafft-hero .hero-line-strong{ stroke: var(--hero-line-color); }
.grafft-hero .hero-line-soft{ stroke: var(--hero-line-color-soft); }
.grafft-hero.grafft-hero--custom-bg .hero-render{
  object-fit: cover;
}

.grafft-hero .hero-content{
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.grafft-hero .hero-eyebrow{
  font-family: var(--hero-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--hero-eyebrow-text);
  margin-bottom: 18px;
}
.grafft-hero h1{
  font-family: var(--hero-mono, 'Fraunces', serif);
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 6.4vw, 84px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  max-width: 900px;
  color: var(--hero-text);
  margin: 0;
}

.grafft-hero .hero-sub{
  font-size: 17px;
  max-width: 460px;
  margin-top: 22px;
  color: var(--hero-sub-text);
  font-weight: 400;
  line-height: 1.5;
}
.grafft-hero .hero-cta{
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--hero-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hero-cta-color);
  background: var(--hero-cta-bg);
  padding: 16px 26px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.grafft-hero .hero-cta:hover{
  background: var(--hero-cta-hover-bg);
  transform: translateX(2px);
}

.grafft-hero-align-center .hero-content{ text-align: center; }
.grafft-hero-align-center .hero-eyebrow,
.grafft-hero-align-center .hero-sub{ margin-left: auto; margin-right: auto; }
.grafft-hero-align-center .hero-cta{ margin-left: auto; margin-right: auto; }

.grafft-hero-align-right .hero-content{ text-align: right; }
.grafft-hero-align-right .hero-eyebrow,
.grafft-hero-align-right .hero-sub{ margin-left: auto; margin-right: 0; }
.grafft-hero-align-right .hero-cta{ margin-left: auto; margin-right: 0; }

@media(max-width: 720px){
  .grafft-hero{
    height: auto;
    min-height: 0;
    align-items: flex-start;
    padding-top: 120px;
  }
  .grafft-hero .hero-content{ padding-bottom: 56px; }
}
