.lh {
  --cream: #FDF6EE;
  --peach: #FFE5D0;
  --orange: #C63A22;
  --orange-dark: #A82F1B;
  --moss: #3E5C50;
  --charcoal: #2A1F1A;
  --charcoal-soft: #4A3F38;
  --gray: #6B655F;

  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 24px 0 0;
}

.lh::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.lh__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 70vh;
  width: 100%;
  box-sizing: border-box;
}

.lh__inner > * { min-width: 0; }

@media (min-width: 900px) {
  .lh__inner {
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    padding: 0 48px;
    gap: 0;
    min-height: min(720px, 90vh);
  }
}

.lh__media {
  position: relative;
  order: 1;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 100%;
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 0;
  opacity: 0;
  animation: lh-fade-in 1.1s ease-out 0.7s forwards;
}

@media (max-width: 899px) {
  .lh__media {
    aspect-ratio: 4 / 5;
    max-height: 56svh;
  }
}

@media (min-width: 900px) {
  .lh__media {
    order: 2;
    aspect-ratio: 5 / 6;
    margin: 0;
    border-radius: 4px;
    transform: translateY(0);
  }
}

.lh__image, .lh__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  /* Soft-feather the image left edge so it bleeds into the cream — fixes "two rectangles touching" */
  .lh__image {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 100%);
  }
}

.lh__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(253, 246, 238, 0.7) 0%, rgba(253, 246, 238, 0) 35%);
  pointer-events: none;
}

@media (max-width: 899px) {
  .lh__overlay {
    background: linear-gradient(180deg, rgba(253, 246, 238, 0) 50%, rgba(253, 246, 238, 0.5) 100%);
  }
}

.lh__content {
  position: relative;
  z-index: 2;
  order: 2;
  padding: 8px 0 56px;
  color: var(--charcoal);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .lh__content {
    order: 1;
    padding: 0 0 0 0;
    margin-right: -140px;
    z-index: 2;
  }
}

.lh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  animation: lh-fade-up 0.7s ease-out 0.25s forwards;
}

.lh__eyebrow-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--orange);
  text-transform: none;
}

.lh__eyebrow-divider {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--charcoal);
  opacity: 0.4;
}

.lh__headline {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(34px, 6.4vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--charcoal);
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 749px) {
  .lh__headline { line-height: 1.08; }
}

.lh__headline > * {
  display: inline-block;
  opacity: 0;
  animation: lh-fade-up 0.85s ease-out forwards;
}

.lh__headline > :nth-child(1) { animation-delay: 0.45s; }
.lh__highlight { animation-delay: 0.6s; }

.lh__highlight {
  position: relative;
  display: inline-block;
}

@media (min-width: 900px) {
  .lh__highlight { white-space: nowrap; }
}

.lh__highlight em {
  font-style: italic;
  font-weight: 500;
  color: var(--charcoal);
}

.lh__swash {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  width: 100%;
  height: 0.28em;
  color: var(--orange);
  pointer-events: none;
  opacity: 0;
  animation: lh-swash-draw 1.1s cubic-bezier(0.65, 0, 0.35, 1) 1.2s forwards;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
}

.lh__subhead {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--charcoal-soft);
  max-width: 100%;
  margin: 0 0 28px;
  opacity: 0;
  animation: lh-fade-up 0.85s ease-out 0.85s forwards;
}

@media (min-width: 900px) {
  .lh__subhead { max-width: 460px; margin-bottom: 36px; }
}

.lh__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  opacity: 0;
  animation: lh-fade-up 0.85s ease-out 1s forwards;
}

@media (min-width: 600px) {
  .lh__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }
}

a.lh__cta,
a.lh__cta:hover,
a.lh__cta:visited,
a.lh__cta:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #C63A22;
  color: #FFFFFF !important;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 16px -8px rgba(198, 58, 34, 0.5);
}

a.lh__cta:hover {
  background: #A82F1B;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(198, 58, 34, 0.55);
}

.lh__cta-arrow {
  transition: transform 0.25s ease;
}

.lh__cta:hover .lh__cta-arrow {
  transform: translateX(3px);
}

.lh__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding: 10px 4px 4px;
  min-height: 44px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lh__secondary:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.lh__secondary em {
  font-style: italic;
  font-weight: 400;
}

.lh__corner {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  color: var(--orange);
  opacity: 0;
  animation: lh-fade-in 1.4s ease-out 1.6s forwards;
  display: none;
}

@media (min-width: 900px) {
  .lh__corner {
    display: block;
    bottom: 40px;
    right: 56px;
  }
}

@keyframes lh-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lh-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lh-swash-draw {
  to { opacity: 1; stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .lh__eyebrow,
  .lh__headline > *,
  .lh__subhead,
  .lh__actions,
  .lh__media,
  .lh__corner,
  .lh__swash {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}
