.elementor-3034 .elementor-element.elementor-element-72e01fb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3034 .elementor-element.elementor-element-761e713{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-83f0d90 *//* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── VARIABLES ── */
:root {
  --gold:       #B8935A;
  --gold-light: #D4AF7A;
  --cream-deep: #EDE4D5;
  --dark:       #1A160E;
  --bark:       #6B5744;
  --text-muted: #8A7968;
}

/* ── BODY ── */
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream-deep);
  color: var(--dark);
  min-height: 100vh;
}

/* ── TIMELINE SECTION ── */
.timeline-section {
  padding: 5rem 6rem;
  background: var(--cream-deep);
}

/* ── HEADER: OUR JOURNEY + HEADING ── */
.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.timeline-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
}
.timeline-header h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ── TIMELINE WRAPPER ── */
.timeline {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding-left: 2rem;
}

/* Vertical gold line on left */
.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold) 5%,
    var(--gold) 95%,
    transparent
  );
}

/* ── EACH TIMELINE ITEM ── */
.timeline-item {
  position: relative;
  padding: 0 0 3.5rem 2.5rem;
}

/* Gold dot */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.15);
}

/* Year label */
.timeline-year {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Title */
.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

/* Description */
.timeline-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 480px;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
  .timeline-section {
    padding: 3rem 1.5rem;
  }
  .timeline-header h2 {
    font-size: 2.2rem;
  }
  .timeline {
    padding-left: 1.5rem;
  }
}/* End custom CSS */